@if ($companies->isEmpty())
No companies found. Create one to get started.
@else
| S.No |
Name |
Email |
Contact |
Logo |
Favicon |
Status |
Actions |
@foreach ($companies as $key => $company)
| {{ ++$key }} |
{{ $company->name }} |
{{ $company->email ?? '-' }} |
{{ $company->contact ?? '-' }} |
@if (!empty($company->logo))
@else
-
@endif
|
@if (!empty($company->favicon))
@else
-
@endif
|
|
|
@endforeach
@endif