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

{{$title}}

Add customer
@for ($year=2025; $year<=date("Y"); $year++) @endfor @foreach($customers as $customer) @for ($year=2020; $year<=date("Y"); $year++) @endfor @endforeach
ID Date Name Phone Number Address Gender Age Customer Type{{ $year }}
{{ $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 }}{{ number_format($customer->yearslySales($customer->id,$year)) }}
@endsection