@extends('layouts.master') @section('css') @endsection @section('page-header') @endsection @section('content')
قائمة التواصل مع العملاء
إجمالي العملاء: {{ $customers->total() }}
@foreach($customers as $key => $customer) @php // تنظيف الرقم وإضافة كود الدولة $phone = preg_replace('/^0/', '966', trim($customer->phone)); @endphp {{-- اسم العميل --}} {{-- رقم الهاتف --}} {{-- زر الواتساب --}} @endforeach
# اسم العميل رقم الهاتف إجراء التواصل
{{ $customers->firstItem() + $key }} {{ $customer->name }} @if($customer->phone) {{ $customer->phone }} @else لا يوجد هاتف @endif @if($customer->phone) @else غير متاح @endif
عرض {{ $customers->firstItem() }} إلى {{ $customers->lastItem() }} من إجمالي {{ $customers->total() }} عميل
{{ $customers->links() }}
@endsection @section('js') @endsection