@if(Auth::user()->role == 'master')
@lang('Agents') /
@endif
@lang('Schools')
| # | @lang('Name') | @lang('Email') | @lang('Phone') | @lang('Location') | @lang('Created') | @lang('Status') | |
|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $school->name.'('.$school->short_name.')' }} |
{{ $school->setting->email }} | {{$school->setting->phone ?? $school->setting->telephone}} | @if($school->country->code=='BD') {{ getDistrictName($school->district_id) }} @elseif($school->country->code=='US') {{getStateName($school->state_id)}} @else {{$school->city}} @endif | {{ date($format,strtotime($school->created_at)) }} | {!! $school->status == 1 ? ''.trans('Active: ').date($format,strtotime($school->activeTill)).'':'' .trans('Inactive').'' !!} | |
| @lang('No Related Data Found.') | |||||||