@extends('layouts.master') @section('css') @endsection @section('title') {{ __('home.home') }} @stop @section('page-header')
@endsection @section('content') @can('Home')| رقم الفاتورة | اسم العميل | رقم الجوال | تاريخ التجديد (الانتهاء) | الأيام المتبقية |
|---|---|---|---|---|
| #{{ $invoice->id }} | {{ $invoice->customer->name ?? '---' }} | {{ $invoice->customer->phone ?? '---' }} | {{ $endDate ?? '---' }} | @if($daysLeft !== null) @if($daysLeft <= 7) باقي {{ $daysLeft }} أيام فقط! @else باقي {{ $daysLeft }} يوم @endif @else --- @endif |
| لا توجد اشتراكات قريبة الانتهاء حالياً. | ||||