@extends('admin.layouts.app') @section('title', 'Branches List') @push('styles') @endpush @push('scripts') {{-- ✅ SweetAlert2 CDN --}} @endpush @section('content')
@if(session('success'))
{{ session('success') }}
@endif

All Branches

Add Branch
@forelse($branches as $branch) @empty @endforelse
ID Bank Branch Address Status Action
{{ $branch->id }} {{ $branch->bank->bank }} {{ $branch->branch_address }} @if($branch->is_active) Active @else Inactive @endif Edit {{-- ✅ Delete Form with SweetAlert --}}
@csrf @method('DELETE')
No branches found.
{{ $branches->links() }}
@endsection