@extends('admin.layouts.master') @section('title') الماليات @endsection @section('css') @endsection @section('content-header')

الماليات

@endsection @section('content')
@include('admin.invoices.cards')
@include('admin.messages')
@foreach($data as $row) @include('admin.invoices.status') @include('admin.invoices.price') @endforeach
# رقم الفاتوره اسم الشركه تاريخ الفاتوره السعر المنتج مميزات اضافيه تاريخ التجديد حاله الفاتوره العمليات
{{$loop->index + 1}} {{$row->number}} {{$row->subscriber->name}} {{$row->date}} {{$row->amount}} {{ $row->package->name ?? null }} @foreach($row->subscriber->features as $feature)
  • {{$feature->name}}
  • @endforeach
    {{ $row->subscriber->expiry_data ?? null }} {!! $row->status() !!}
    @endsection @section('js') @endsection