@extends('layouts.rider') @section('title', 'Rider Completed Trip') @section('content')

Completed Trip

Completed Trip

@forelse ($riderTrips as $riderTrip) @empty

No users

@endforelse
Pickup Location Trip Distance Trip Duration Estimated Fare Created Date Action
{{ $riderTrip->pickupLoc }} {{ $riderTrip->distance }} {{ $riderTrip->duration }} {{ $riderTrip->estFare }} {{ $riderTrip->created_at }}
{{-- required --}} {{-- required in kobo --}} {{-- For other necessary things you want to add to your payload. it is optional though --}} {{-- required --}} {{ csrf_field() }} {{-- works only when using laravel 5.1, 5.2 --}} {{-- employ this in place of csrf_field only in laravel 5.0 --}}

@endsection