20 lines
991 B
PHP
20 lines
991 B
PHP
@if(!empty($schedules) && count($schedules))
|
|
<div class="box box-primary">
|
|
<div class="box-header"><h3 class="box-title">@lang('portal::lang.periodic_services')</h3></div>
|
|
<div class="box-body table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
<thead><tr><th>@lang('maintenance::lang.title')</th><th>@lang('portal::lang.due_date')</th><th></th></tr></thead>
|
|
<tbody>
|
|
@foreach($schedules as $schedule)
|
|
<tr>
|
|
<td>{{ $schedule->title }}</td>
|
|
<td>@if($schedule->next_due_at) @format_datetime($schedule->next_due_at) @else - @endif</td>
|
|
<td><a href="{{ action([\Modules\Portal\Http\Controllers\Customer\PreventiveScheduleController::class, 'show'], [$schedule->id]) }}" class="btn btn-xs btn-info">@lang('portal::lang.view_details')</a></td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@endif
|