25 lines
1.2 KiB
PHP
25 lines
1.2 KiB
PHP
@extends('portal::layouts.customer')
|
|
@section('title', __('portal::lang.field_missions'))
|
|
@section('content')
|
|
<section class="content-header"><h1>@lang('portal::lang.field_missions')</h1></section>
|
|
<section class="content">
|
|
<div class="box box-primary"><div class="table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
<thead><tr><th>@lang('portal::lang.mission_number')</th><th>@lang('maintenance::lang.title')</th><th>@lang('portal::lang.status')</th><th></th></tr></thead>
|
|
<tbody>
|
|
@forelse($missions as $mission)
|
|
<tr>
|
|
<td>{{ $mission->mission_number }}</td>
|
|
<td>{{ $mission->title }}</td>
|
|
<td>{{ $mission->status }}</td>
|
|
<td><a href="{{ action([\Modules\Portal\Http\Controllers\Customer\FieldMissionController::class, 'show'], [$mission->id]) }}" class="btn btn-xs btn-info">@lang('portal::lang.view_details')</a></td>
|
|
</tr>
|
|
@empty
|
|
<tr><td colspan="4" class="text-center text-muted">@lang('portal::lang.no_records')</td></tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>{{ $missions->links() }}</div>
|
|
</section>
|
|
@endsection
|