@extends('layouts.vertical', ['pageTitle' => 'Company Details']) @section('page-title') @include('layouts.partials/app-pagetitle', [ 'pageTitle' => 'COMPANY DETAILS', 'pageSubTitle1' => 'Unity ERP', 'pageSubTitle2' => 'Settings' ])
@endsection @section('content')| Company Name: | {{ $company->name }} |
| Legal Name: | {{ $company->legal_name }} |
| RFC: | {{ $company->rfc }} |
| Tax Regime: | {{ $company->tax_regime ?? '-' }} |
| Status: | @if($company->is_active) Active @else Inactive @endif |
| Email: | {{ $company->email ?? '-' }} |
| Phone: | {{ $company->phone ?? '-' }} |
| Website: | @if($company->website) {{ $company->website }} @else - @endif |
| Created: | {{ $company->created_at->format('M d, Y') }} |
| Updated: | {{ $company->updated_at->format('M d, Y') }} |
@if($company->street) {{ $company->street }} @if($company->ext_number) #{{ $company->ext_number }} @endif @if($company->int_number) Int. {{ $company->int_number }} @endif @endif
@if($company->neighborhood) {{ $company->neighborhood }}, @endif @if($company->city) {{ $company->city }}, @endif @if($company->state) {{ $company->state }} @endif @if($company->zip_code) {{ $company->zip_code }} @endif
{{ $company->country ?? 'Mexico' }}
@elseNo address registered
@endif| Name | City | Phone | Status |
|---|---|---|---|
| {{ $branch->name }} | {{ $branch->city ?? '-' }} | {{ $branch->phone ?? '-' }} | @if($branch->is_active) Active @else Inactive @endif |
No branches registered
@endif| Name | Role in Company | Status | |
|---|---|---|---|
| {{ $user->name }} | {{ $user->email }} | {{ $user->pivot->role ?? 'Member' }} | @if($user->pivot->is_active) Active @else Inactive @endif |
No users assigned
@endif