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

العملاء

@endsection @section('content')
@include('admin.messages') @foreach($data as $row) @include('admin.subscription.changepassword') @include('admin.subscription.deleted') @endforeach
# اسم الشركه البريد الالكتروني رقم الهاتف حاله المشترك نوع الاشتراك اسم المنتج مميزات اضافيه كلمه المرور العمليات
{{$loop->index+1}} {{$row->name}} {{$row->email}} {{$row->phone}}
status == "active" ? "checked" : null}} type="checkbox" role="switch" id="flexSwitchCheckDefault{{$row->id}}" onchange="updateStatus(this.checked, {{$row->id}})">
{{ $row->type_subscribers == "monthly" ? 'شهري' : ($row->type_subscribers == 'years' ? 'سنوي' : 'تجربي') }} {{$row->package->name ?? null}} @foreach($row->features as $feature)
  • {{$feature->name}}
  • @endforeach
    {{$row->password_not_generation ?? null}}
    @endsection @section('js') @endsection