@extends('admin.layouts.layout') @section('content')

Branches & Office List

@can('create_branch') @endcan
@include('admin.layouts.message')
@foreach ($branches as $rows) @endforeach
Serial Branch Name Division Status
Action
{{ $rows->serial_no ?? '-' }} {{ Str::limit($rows->branch_name, 50) }} {{ $rows->division->name ?? 'N/A' }}
@if ($rows->status == 1)
Active
@else
InActive
@endif
@can('edit_branch') @endcan @can('delete_branch') @endcan
@method('DELETE') @csrf
@endsection @push('styles') @endpush @push('scripts') @endpush