@extends("layouts.main") @section('main-container')
@if (Session::has('success')) @endif @if ($errors->any())
@endif
{{-- Customers header --}}
Customers
Add
{{-- add modal --}}
@php $slNumber = 1 @endphp @foreach ($customers as $cust) {{-- edit modal --}} @endforeach
Sl User ID Customer Name IP Address Mobile Package Status Bill Start Date Client Type Bill Type Action
{{ $slNumber++ }} {{ $cust->id }} {{ $cust->customer_name }} {{ $cust->device }} {{ $cust->mobile1 }} {{ $cust->CustomerPackage->customer_package_name }} {{ $cust->status ==1 ? 'Active' : 'Inactive' }} {{ $cust->joining_date }} {{ $cust->CustomerType->customer_type_name }} {{ $cust->bill_type_id }}
@push('select2') @endpush @endsection