@extends('layouts.admin') @section('title', 'Companies') @section('page_title', 'Companies') @section('content')

Companies

Manage company profiles and settings.

@if($search) @endif
Add Company
@if(session('success'))
{{ session('success') }}
@endif
@forelse($companies as $company) @empty @endforelse
Company Address Contact Person Time Zone Status Created At Actions
@if($company->logo) {{ $company->name }} @else @endif
{{ $company->name }}
{{ $company->email }}
{{ $company->address_1 }} @if($company->address_2)
{{ $company->address_2 }} @endif
{{ $company->contact_person }}
{{ $company->mobile_number }}
{{ $company->timeZone->name ?? 'N/A' }} {{ $company->created_at->format('M d, Y') }}
No companies found. Click "Add Company" to create one.
@if($companies->hasPages())
{{ $companies->links() }}
@endif
@endsection