Logo
Name
Email
Phone
Type
Actions
@forelse($companies as $company)
@if($company->logo)
@else
-
@endif
{{ $company->name ?? '-' }}
{{$company->email}}
{{$company->phone}}
{{$company->type}}
@csrf @method('DELETE')
@empty
No data available
@endforelse
@if ($companies->hasPages())
{{-- Previous --}} @if (!$companies->onFirstPage())
@endif
Page {{ number_format($companies->currentPage()) }} of {{ number_format($companies->lastPage()) }}
{{-- Next --}} @if ($companies->hasMorePages())
@endif
@endif