@extends('layouts.user') @section('page-title', 'Buses Schedules') @section('page-title-body', 'Buses Schedules') @section('active-link-3', 'active-link') @section('main-theme')

Buses Schedules

@foreach($depatures as $data) @endforeach
Created AtRoute NameDepature Date Depature TimeExpected Arrival Time Reporting TimeVia Bus TypeFare Vehicle NumberTotal Seat VIP Addition PriceVIP SeatStatusAction
{{ date_format(date_create($data->created_at), 'd M, Y H:i') }} {{$data->start_from}}-{{$data->end_to}} {{date_format(date_create($data->depature_date), 'd M, Y') }} {{date_format(date_create($data->depature_time), 'H:i A') }} {{date_format(date_create($data->expected_arrival_time), 'H:i A') }} {{date_format(date_create($data->reporting_time), 'H:i A') }} {{$data->via}} {{$data->bus_type}} {{$data->fare}} {{$data->registration_number}} {{$data->number_of_sit}} @if( $data->vip_addition_price == null || $data->vip_addition_price < 10) NA @else {{$data->vip_addition_price}} @endif @if( $data->vip_seat== null) NA @else {{$data->vip_seat}} @endif @if($data->status == 0) Active @else Inactive @endif
@endsection @push('scripts') @endpush