@extends('layouts.main') @section('content')
| ID | Date | Name | Phone Number | Address | Gender | Age | Customer Type | @for ($year=2025; $year<=date("Y"); $year++){{ $year }} | @endfor @foreach($customers as $customer)
|---|---|---|---|---|---|---|---|---|
| {{ $customer->id }} | {{Carbon\Carbon::parse($customer->created_at)->format('Y-m-d')}} | {{$customer->name}} | {{$customer->phone_number}} | {{$customer->address}} | {{ $customer->gender }} | {{ $customer->age }} | {{ $customer->customer_type }} | @for ($year=2020; $year<=date("Y"); $year++){{ number_format($customer->yearslySales($customer->id,$year)) }} | @endfor