@include('header') @php // Set no-cache headers header('Cache-Control: no-cache, no-store, must-revalidate'); header('Pragma: no-cache'); header('Expires: 0'); @endphp
@include('left-split-view')
My Companies
Create content, manage plans, and edit details of the companies you manage.
@php $search = session()->has('searchHistory') ? session()->get('searchHistory') :''; @endphp
@if(!empty($search))
Clear
@endif
@can('add-company') @endcan
@isset($companies['data'])
@if($companies['data'] != null)
Company Id
Email
Company Name
URL
Seller Name
@if(auth()->user()->user_role === 1)
Account Type
@endif
@foreach ($companies['data'] as $company)
#{{$company->client_id}}
{{$company->email}}
{{$company->company_name}}
{{$company->name}}
@if(auth()->user()->user_role === 1)
@if($company->user_role === 3) Change Role @else @endif
@endif
@can('update-company') @endcan @can('Give-access-to-edit-permissions') @endcan @can('impersonate') @endcan
@endforeach
@else
There are no company details available.
@endif
@endisset
@if(!empty($companies['to'])) @foreach ($companies['links'] as $link) @endforeach @endif
@include('footer')