LAR_Maintenance/resources/views/maintenance/planned-detail.blade.php

13 lines
638 B
PHP
Raw Normal View History

2024-07-31 18:45:14 +02:00
<x-layout-app>
<div class="container-xl">
<div class="page-header">
<h1>{{ __('Planned Maintenance') }}</h1>
</div>
2024-08-06 11:02:45 +02:00
<p>{!! $maintenance_history->maintenance->description !!}</p>
2024-08-07 07:52:07 +02:00
<x-form::form action="{{ route('maintenance.planned.detail.put', ['maintenance_history' => $maintenance_history->id]) }}" method="PUT">
2024-08-07 09:54:20 +02:00
@livewire('maintenance.progress-form', ['maintenanceHistory' => $maintenance_history->id], key('progress-form'))
2024-08-07 07:52:07 +02:00
<x-form::button class="btn-primary" type="submit">{{ __('Ukončit') }}</x-form::button>
2024-08-06 16:20:45 +02:00
</x-form::form>
2024-07-31 18:45:14 +02:00
</div>
2024-08-07 07:52:07 +02:00
</x-layout-app>