{{-- layout extend --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Dashboard Modern') {{-- vendor styles --}} @section('vendor-style') @endsection {{-- page styles --}} @section('page-style') @endsection {{-- page content --}} @section('content')
@include('panels.flashMessages')
@if(isset($userType) && $userType==config('custom.superadminrole'))
Company

{{(isset($totalCompanyCount) && $totalCompanyCount!='' ) ? $totalCompanyCount : ''}}

perm_identity

Total Comapny

@endif @if(isset($userType) && $userType==config('custom.superadminrole'))
User

{{(isset($totalCompanyCount) && $totalCompanyCount!='' ) ? $totalCompanyCount : ''}}

perm_identity

Total User

@endif
@if(isset($userType) && $userType==config('custom.superadminrole'))

Company List

@if(isset($all_company) && !empty($all_company)) @foreach($all_company as $key => $company_value) @endforeach @endif
S.no Company Name Phone Date
{{$key+1}} {{$company_value->company_name}} {{$company_value->contact_mobile}} {{ date('m-d-Y', strtotime($company_value->created_at)) }}
@endif @if(isset($userType) && $userType!=config('custom.superadminrole'))

Order List

@if(isset($order_list) && !empty($order_list)) @foreach($order_list as $key => $order_value) @endforeach @endif
S.no Username Amount Type Date
{{$key+1}} {{$order_value->username->name}} {{$order_value->total_amount}} {{$order_value->order_type}} {{ date('m-d-Y', strtotime($order_value->created_at)) }}
@endif
@endsection {{-- vendor scripts --}} @section('vendor-script') @endsection {{-- page scripts --}} @section('page-script') @endsection