@php $user_session = session('restaurant'); @endphp @extends('layouts.customer') @section('content')

Tips

@if ($message = Session::get('success'))

{{ $message }}

@endif
@if($tips) @php $i = 0; @endphp
@foreach($tipss as $tips) @endforeach
Date of tips tips no Customer Name Order items Amount tipsed by Action
{{ date('F j, Y', strtotime($tips->created_at)); }}
{{ date('H:i:s A', strtotime($tips->created_at)); }}
##{{ $tips->id }} {{ $tips->order->order_items()->count() ?? '' }} USD {{ $tips->tips_amount }} {{ $tips->staff ? ( $tips->staff->getName() ?? '' ) : '' }}
@else

No records found!

@endif
@endsection