@extends('admin.layout.base') @section('title', $page) @section('content')

{{$page}}

@lang('admin.include.user_ride_histroy')
@if(count($Users) != 0) @foreach($Users as $index => $user) @if(Setting::get('demo_mode', 0) == 1) @else @endif @endforeach
@lang('admin.fleets.name') @lang('admin.mobile') @lang('admin.fleets.Total_Rides') @lang('admin.users.Total_Spending') @lang('admin.fleets.Joined_at') @lang('admin.fleets.Details')
{{$user->first_name}} {{$user->last_name}} {{ substr($user->mobile, 0, 5).'****' }}{{ $user->mobile }} @if($user->rides_count) {{$user->rides_count}} @else - @endif @if($user->payment) {{currency($user->payment[0]->overall)}} @else - @endif @if($user->created_at) {{$user->created_at->diffForHumans()}} @else - @endif Ride Histroy
@include('common.pagination') @else
No results found
@endif
@endsection