@extends('layouts.master') @section('css') @endsection @section('page-header') @endsection @section('content')

قائمة العملاء للتواصل عبر الواتساب

@foreach($customers as $key => $customer) @php // تنظيف الرقم وإضافة كود الدولة $phone = preg_replace('/^0/', '966', trim($customer->phone)); @endphp @endforeach
# الاسم رقم الهاتف إجراء (واتساب)
{{ $customers->firstItem() + $key }} {{ $customer->name }} {{ $customer->phone ?? 'لا يوجد' }} @if($customer->phone) @else لا يوجد رقم @endif
{{ $customers->links() }}
@endsection @section('js') @endsection