@extends('layouts.app') @section('title', $company->company_name) @push('styles') @endpush @section('content')
Dashboard / Companies / {{ $company->company_name }}

Company Details / 公司資料

Company Name / 公司名稱
{{ $company->company_name }}
CI Number / 公司註冊證號碼
{{ $company->ci_number }}
Date of Incorporation / 成立日期
{{ $company->date_of_incorporation->format('d/m/Y') }}
Created
{{ $company->created_at->format('d/m/Y H:i') }}
Last Updated
{{ $company->updated_at->format('d/m/Y H:i') }}

Directors / 董事

Add
@if($company->directorAppointments->isEmpty())

No directors appointed yet.

@else @foreach($company->directorAppointments as $appointment) @endforeach
Director Name Appointed Status
{{ $appointment->director->full_name }} {{ $appointment->date_of_appointment->format('d/m/Y') }} @if($appointment->date_of_ceasing) Ceased {{ $appointment->date_of_ceasing->format('d/m/Y') }} @else Active @endif
@endif

Danger Zone

Deleting this company will also remove all associated director appointments. This action cannot be undone.

@csrf @method('DELETE')
@endsection