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

{{ trans('Accounts List') }} Showing {{($result['accountsData']->currentPage()-1)* $result['accountsData']->perPage()+($result['accountsData']->total() ? 1:0)}} to {{($result['accountsData']->currentPage()-1)*$result['accountsData']->perPage()+count($result['accountsData'])}} of {{$result['accountsData']->total()}} Results

@include('admin.loader') @php $getUserRoleData = userRoleData(); $Accounts = explode(",",$getUserRoleData->Accounts); $accountButton = explode(",",$getUserRoleData->accountButton); @endphp
@if(in_array("Add",$Accounts )) @endif
@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 Number or ID/Customer/Assigned to/Status @if(in_array("Send",$accountButton )) Create Account @endif Clear Filter
{!! Form::select('leads_products[]', $result['services'], $leads_products, array('class'=>'form-control', 'id'=>'leads_products', 'multiple'=>'')) !!}
{!! Form::select('assignedto[]', $result['assigned_to'], $assignedto, array('class'=>'form-control', 'id'=>'assignedto', 'multiple'=>'')) !!}
{!! Form::select('country[]', $result['country'], $country, array('class'=>'form-control', 'id'=>'country', 'multiple'=>'')) !!}
{!! Form::select('accountsStatus[]', $result['accountsStatus'], $accountsStatus, array('class'=>'form-control', 'id'=>'accountsStatus', 'multiple'=>'')) !!}

@if(in_array("View",$Accounts )) @if(in_array("Edit",$Accounts ) || in_array("Delete",$Accounts )) @endif @include('admin.accounts_pagination_data')
{{ trans('Accounts Number') }} {{ trans('Customer Name') }} {{ trans('Phone') }} {{ trans('Status') }} {{ trans('Assigned to') }} {{ trans('Created Date') }}{{ trans('Action') }}
@else

Please contact with SuperAdmin

@endif
@endsection @section('scripts') @endsection