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

13 lines
638 B
PHP
Raw Normal View History

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