@include('includes.data_table_header')
{!! Form::open(['route' => $base_route.'.bulk-action', 'id' => 'bulk_action_form']) !!} @if (isset($data['guardian']) && $data['guardian']->count() > 0) @php($i=1) @foreach($data['guardian'] as $guardian) @php($i++) @endforeach @else @endif
S.N. Name Address Contact Students Status
{{ $i }} {{ $guardian->guardian_first_name.' '.$guardian->guardian_middle_name.' '. $guardian->guardian_last_name }} {{ $guardian->guardian_address }} {{ $guardian->guardian_residence_number.' | '.$guardian->guardian_mobile_1 }} @if($guardian->students()->get()->count() > 0 ) @foreach($guardian->students()->get() as $student) @endforeach
{{ '['.$student->reg_no .'] '. $student->first_name.' '.$student->middle_name.' '. $student->last_name }}
@endif
No {{ $panel }} data found. Please Filter {{ $panel }} to show.
{!! Form::close() !!}