@extends('layouts.app') @section('page-title', __('Contract')) @section('page-heading', __('Contract')) @section('breadcrumbs') @stop @section('content') @include('partials.messages')

{{ $contract->title }}

Start Date: {{ $contract->start_date->format('Y-m-d') }}

Number of Days: {{ $contract->number_of_days }}

Status: {{ ucfirst($contract->status) }}

Role: {{ optional($contract->role)->display_name }}

Counties:

    @forelse($contract->counties as $county)
  • {{ $county->name }}
  • @empty
  • No counties assigned
  • @endforelse

Description:

{!! $contract->description !!}
@if($contract->authority_signature)

Authority Signature:

Authority Signature
@endif
Edit
@csrf @method('DELETE')
Back to List
@endsection