@extends('layouts.app') @section('title', $company->name) @section('content')

Company Information

@if($company->logo_path && file_exists(public_path($company->logo_path))) {{ $company->name }} @else
@endif
{{ $company->name }}
{{ $company->domain }}
{{ $company->active ? 'Active' : 'Inactive' }}
{{ $company->created_at->format('M d, Y') }}
{{ $company->updated_at->format('M d, Y') }}

Statistics

{{ $company->users_count }}
Total Users
{{ $company->orders_count }}
Total Orders
@can('manage companies')

Danger Zone

Delete Company

Once you delete a company, there is no going back. Please be certain.

@csrf @method('DELETE')
@endcan
@endsection