@extends('FrontUser.layouts.app') @section('title', 'Search') @section('content')
Search results for "{{ $q }}"
Calls
@forelse($calls as $call) @empty @endforelse
ID Contact Phone Date
{{ $call->call_id ?? $call->id }} {{ $call->contact_name ?? '—' }} {{ $call->phone_number ?? '—' }} {{ optional($call->date_time)->format('d M, h:i A') }}
No calls found.
Transactions
@forelse($transactions as $t) @empty @endforelse
ID Type Amount Date
{{ $t->id }} {{ ucfirst($t->type) }} ₹{{ number_format((float)$t->amount, 2) }} {{ optional($t->created_at)->format('d M, h:i A') }}
No transactions found.
@endsection