@extends('admin.layout') @section('content')

{{ trans('Accounts List') }} {{ trans('Accounts List') }}...

@php $getUserRoleData = userRoleData(); $Accounts = explode(",",$getUserRoleData->Accounts); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
Search By: Accounts Name or ID/Customer/Services/Package
{{ trans('Clear Search') }}

@if(in_array("View",$Accounts )) @if(in_array("Edit",$Accounts ) || in_array("Delete",$Accounts )) @endif @if(count((array) $result['accountsData'])>0) @foreach ($result['accountsData'] as $rsVal) @if(in_array("Edit",$Accounts ) || in_array("Delete",$Accounts )) @endif @endforeach @else @endif
{{ trans('Accounts Name') }} {{ trans('Customer Name') }} {{ trans('Date') }}{{ trans('Action') }}
#{{ $rsVal->accounts_name }} {{ $rsVal->customers_firstname }} {{ $rsVal->customers_lastname }} {{ $rsVal->accounts_created_at}} @if(in_array("View",$Accounts )) @endif
No record found
@else

Please contact with SuperAdmin

@endif
@endsection