@include('layouts.header') @include('layouts.sidebar')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
@foreach($accountants as $row) @endforeach
Action Accountants ID Accountants Name Phone Status
{{ $row->accountant_id}} {{ $row->full_name}} {{ $row->phone1}} @if($row->status==1)Active@else Inactive @endif
@include('layouts.footer')