@extends('layouts.app') @section('content')

{{ $company->name }}

@if ($message = Session::get('success')) @endif

Company Information

{{ $company->name }}

{{ $company->email }}

{{ $company->phone }}

{{ $company->currency_code }}

{{ $company->address }}

{{ $company->city }}

{{ $company->country }}

@if($company->is_active) Active @else Inactive @endif

Quick Stats

Staff Members: {{ $company->users->count() }}
Clients: {{ $company->clients->count() ?? 0 }}
Tiers: {{ $company->tiers->count() ?? 0 }}
Created: {{ $company->created_at->format('M d, Y') }}
Updated: {{ $company->updated_at->format('M d, Y') }}

Actions

Edit Company
@csrf @method('DELETE')
Back to List
@endsection