@include('admin.common-layout.header')
|
|
Teacher Name | Class | Subject | Hourly Rate | Status | Registered At | Action |
|---|---|---|---|---|---|---|---|
|
|
{{ $rate->teacher->name ?? '' }} | {{ $rate->class->classes_name ?? '' }} | {{ $rate->subject->subjects_name ?? '' }} | {{ $rate->hourly_rate ?? '' }} | @if($rate->status==1) Active @else Inactive @endif | @if(!empty($rate->created_at)) {{ date('d-m-Y', strtotime($rate->created_at)) }} @else @endif |
|