@extends('layouts.app')
@section('title', __('tracker::lang.Schedule'))
@section('content')
@section('css')
@php
$trips = \Modules\Tracker\Entities\Trip::with([
'getCustomer',
'getUser',
'getSchedule'
])->latest()->limit(100)->get();
@endphp
@endsection
@include('tracker::layouts.nav')
@lang('tracker::lang.Schedule')