@extends('layouts.master') @section('content')
Stoppage list
{{-- Add New --}}
@php $sn = 1 @endphp @foreach ($stoppages as $stoppage) @endforeach
SN Name Route Pickup Time Drop Time Monthly Cost Action
{{ $sn++; }} {{ $stoppage->name }} {{ $transport_routes[$stoppage->route_id] }} {{ time_in_am_pm($stoppage->pickup_time) }} {{ time_in_am_pm($stoppage->drop_time) }} {{ round($stoppage->monthly_cost) }}
@csrf @method('DELETE')
@endsection @section('scripts') @endsection