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

Director Appointments

{{ $company->company_name }} (CI: {{ $company->ci_number }})
@if($appointments->isEmpty())

No director appointments found for this company.

Add First Appointment
@else
@foreach($appointments as $appointment) @endforeach
Director Name / 董事姓名 Date of Appointment / 委任日期 Date of Ceasing / 離職日期 Status Remarks / 備註 Actions
{{ $appointment->director->full_name }} {{ $appointment->date_of_appointment->format('d/m/Y') }} {{ $appointment->date_of_ceasing ? $appointment->date_of_ceasing->format('d/m/Y') : '-' }} @if($appointment->date_of_ceasing) Ceased @else Active @endif {{ Str::limit($appointment->remarks, 30) ?? '-' }}
@csrf @method('DELETE')
@endif
Back to Company
@endsection