@extends('backend.layouts.app') @section('title', __('Dashboard')) @section('content')
Welcome!

{{ auth()->user()->name }}

Drop Point Officer (Office : {{ auth()->user()->office() }})
Position : {{ auth()->user()->can('staff.manager')? "Manager" : "Staff" }}

@foreach($trips as $trip) @endforeach
Trip No. Date Destination Status Current Location Total Parcel  
{{ $trip->code }} {{ $trip->date }} {{ $trip->destination->code }} {!! $trip->status_badge !!} {{ $trip->parcels->count() }} Parcel(s)
@endsection @push('after-scripts') {{-- --}} @endpush