@extends('layouts.admin') @section('title', 'Leads') @section('content')
All Quotation Leads
Total: {{ $quotations->total() }} leads
@forelse($quotations as $index => $q) @empty @endforelse
Sr No. Name Email Phone Project Type Location Area (sqft) Received On
{{ $loop->iteration + ($quotations->currentPage() - 1) * $quotations->perPage() }} {{ $q->name }} {{ $q->email }} {{ $q->phone }} {{ $q->projectType->name ?? 'N/A' }} {{ $q->location }} {{ $q->area }} {{ \Carbon\Carbon::parse($q->created_at)->format('d M Y') }}
No leads available.
{{ $quotations->links('pagination::bootstrap-5') }}
@endsection