@extends('layouts.Admin.master') @section('title') ادارة الاهتمامات @endsection @section('css')

اهتمامات العملاء

@forelse ($interests as $clientId => $clientInterests) @php $first = $clientInterests->first(); $count = $clientInterests->count(); $latestDate = $clientInterests->max('created_at'); @endphp @empty @endforelse
# اسم العميل رقم الجوال عدد الاهتمامات آخر تاريخ اهتمام عرض التفاصيل
{{ $loop->iteration }} {{ $first->client_name }} {{ $first->client_phone }} {{ $count }} {{ \Carbon\Carbon::parse($latestDate)->format('d-m-Y') }}
لا توجد بيانات حالياً
@foreach ($interests as $clientId => $clientInterests) @php $first = $clientInterests->first(); @endphp @endforeach
@endsection