@extends('admin.layouts.app') @php $pageTitle = $pageTitle ?? 'Management Members'; @endphp @section('panel') @if(session('success'))
{{ session('success') }}
@endif
@if(empty($items) || count($items) === 0)
No members found

Click “Add New” to create your first management member.

Add New
@else
@foreach($items as $i => $m) @php $photo = $m->photo_path ? (filter_var($m->photo_path, FILTER_VALIDATE_URL) ? $m->photo_path : asset($m->photo_path)) : null; $searchKey = strtolower( ($m->name ?? '') . ' ' . ($m->role ?? '') . ' ' . ($m->sort_order ?? '') ); @endphp @endforeach
# Photo Name Role Sort Status Action
#{{ $i+1 }} @if($photo) @else @endif {{ $m->name }} {{ $m->role }} {{ (int) $m->sort_order }} @if($m->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
@endif
@endsection @push('breadcrumb-plugins') Add New @endpush @push('page_css') @endpush @push('script') @endpush