@extends('layouts.app') @use('Carbon\Carbon') @section('content')
@include('layouts.partials.breadcrumb', ['title' => 'Trainer'])
@foreach ($trainerLists as $index => $item) @endforeach
S.N Full Name Phone Email Shift Start Date End Date Action
{{ $index + 1 }} {{ $item->first_name }} {{ $item->last_name }} {{ $item->phone }} {{ $item->email }} {{ $item->shift }} {{ Carbon::parse($item->start_date)->format('h:i A') }} {{ Carbon::parse($item->end_date)->format('h:i A') }}
@endsection @push('js') @endpush