@extends('merchant.layout') @section('title','Branches') @section('content')

Branches

{{-- Success --}} @if(session('success'))
{{ session('success') }}
@endif
@forelse($branches as $branch) {{-- Edit Modal --}} @empty @endforelse
# Branch Name Location Status Actions
{{ $loop->iteration }} {{ $branch->name }} {{ $branch->location }} {{ $branch->status ?? 'Active' }} {{-- Edit --}} {{-- Delete --}}
@csrf @method('DELETE')
No branches found
{{ $branches->links() }}
{{-- Add Branch Modal --}} @endsection