@extends('layouts.sash') @section('title', 'Branches') @section('content')
@forelse($branches as $branch) @empty @endforelse
Code Name City Status Actions
{{ $branch->code }} {{ $branch->name }} {{ $branch->city }} {{ $branch->status }}
@csrf @method('DELETE')
No branches found.
@if($branches->hasPages())
{{ $branches->withQueryString()->links() }}
@endif
@endsection