@extends('admin.layout.app') @section('body')

Companies

Clients and partners
New Company
{{-- Search --}}
@if(request('q')) Clear @endif
@forelse($companies as $c) @empty @endforelse
# Name Contact Email Phone Actions
{{ $c->id }} {{ $c->name }} @if($c->address)
{{ Str::limit($c->address, 60) }}
@endif
{{ $c->contact_person ?: '—' }} @if($c->email) {{ $c->email }} @else — @endif {{ $c->phone ?: '—' }}
@csrf @method('DELETE')
No companies found.
{{ $companies->withQueryString()->links() }}
@endsection