@extends('layouts.customer') @section('content')

Tips

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

{{ $message }}

@endif
@if( $tips )
@foreach( $tips as $tip ) @endforeach
Tip No. Location Date Tip Amount Action
{{ 'TIP-101-N-' . $tip->id }} {{ collect($locations)->get($tip->location_id) ?? 'N/A' }} {{ date('M d, Y | H:iA',strtotime($tip->date)) ?? '' }} ${{ number_format(round($tip->amount, 2), 2) ?? '' }}
@else

No record found!

@endif
@endsection @section('script') @endsection