@extends('layouts.backend.master') @section('admin') {{-- Font Awesome 4 --}} {{-- Summernote (Bootstrap 3 build) --}}
{{-- ── Add modal (empty $data) ──────────────────────────────── --}} @php $data = (object)[]; @endphp @include('backend.modal.concern')

{{ $subTitle }}

@foreach ($dataList as $data) {{-- Edit modal for this row --}} @include('backend.modal.concern') @endforeach
Sl: Image Title Notes Status Action
{{ $loop->index + 1 }} @if($data->image) @php $img = json_decode($data->image); @endphp @endif {{ $data->title }} @if($data->serviceNote) @php $ns = json_decode($data->serviceNote, true); @endphp @foreach($ns as $n)
{{ $n['note_title'] ?? '' }}
@endforeach @else @endif
{{ $data->status }} Edit
@csrf @method('DELETE')
@endsection