@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100'])
@section('content')
@include('layouts.navbars.auth.topnav', ['title' => 'Branches'])
|
Branch Code |
Branch Name |
Account |
Account Group |
Action |
|
@foreach($branches as $branch)
|
|
{{$branch->branch_name}}
|
|
|
@can('branch edit')
@endcan
@can('branch delete')
@endcan
|
@endforeach
@include('layouts.footers.auth.footer')
@endsection