19 lines
1.9 KiB
PHP
19 lines
1.9 KiB
PHP
@extends('portal::layouts.customer')
|
|
@section('title', $schedule->title)
|
|
@section('content')
|
|
<section class="portal-page-header"><h1>{{ $schedule->title }}</h1></section>
|
|
<section class="content">
|
|
<div class="box box-primary"><div class="box-body">
|
|
@if($schedule->description)<p>{{ $schedule->description }}</p>@endif
|
|
<p><strong>@lang('portal::lang.frequency'):</strong> {{ $schedule->frequency_type }} @if($schedule->frequency_value) ({{ $schedule->frequency_value }}) @endif</p>
|
|
<p><strong>@lang('portal::lang.due_date'):</strong> @if($schedule->next_due_at) @format_datetime($schedule->next_due_at) @else - @endif</p>
|
|
@if($schedule->last_performed_at)<p><strong>@lang('portal::lang.last_service_date'):</strong> @format_datetime($schedule->last_performed_at)</p>@endif
|
|
@if($schedule->equipment)<p><strong>@lang('portal::lang.linked_equipment'):</strong> <a href="{{ action([\Modules\Portal\Http\Controllers\Customer\EquipmentController::class, 'show'], [$schedule->equipment_id]) }}">{{ $schedule->equipment->name }}</a></p>@endif
|
|
@if($schedule->productionLine)<p><strong>@lang('portal::lang.linked_line'):</strong> <a href="{{ action([\Modules\Portal\Http\Controllers\Customer\ProductionLineController::class, 'show'], [$schedule->production_line_id]) }}">{{ $schedule->productionLine->name }}</a></p>@endif
|
|
@if($schedule->project)<p><strong>@lang('portal::lang.linked_project'):</strong> <a href="{{ action([\Modules\Portal\Http\Controllers\Customer\ProjectController::class, 'show'], [$schedule->project_id]) }}">{{ $schedule->project->name }}</a></p>@endif
|
|
@if($schedule->assignedUser)<p><strong>@lang('portal::lang.technician'):</strong> {{ $schedule->assignedUser->first_name }} {{ $schedule->assignedUser->last_name }}</p>@endif
|
|
</div></div>
|
|
@include('portal::partials.process_work_orders', ['workOrders' => $workOrders])
|
|
</section>
|
|
@endsection
|