@include('layouts.header') @include('layouts.sidebar')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
@if(hasPermission('bank', 'update') || hasPermission('bank', 'delete')) @endif @if(hasPermission('bank', 'status')) @endif @foreach($banks as $row) @if(hasPermission('bank', 'update') || hasPermission('bank', 'delete')) @endif @if(hasPermission('bank', 'status')) @endif @endforeach
ActionBankStatus
{{ $row->bank_name}}@if($row->status==1)Active@else Inactive @endif
@include('layouts.footer')