35 lines
1.7 KiB
PHP
35 lines
1.7 KiB
PHP
@extends('layouts.app')
|
|
@section('title', __('qualitymanagement::lang.ncr'))
|
|
@section('content')
|
|
@include('qualitymanagement::layouts.nav')
|
|
<section class="content">
|
|
<div class="box box-primary">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">@lang('qualitymanagement::lang.ncr')</h3>
|
|
@can('qms.ncr.create')
|
|
<div class="box-tools"><a href="{{ action([\Modules\QualityManagement\Http\Controllers\NcrController::class, 'create']) }}" class="btn btn-primary btn-sm">@lang('qualitymanagement::lang.create')</a></div>
|
|
@endcan
|
|
</div>
|
|
<div class="box-body table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
<thead><tr>
|
|
<th>@lang('qualitymanagement::lang.ref_no')</th><th>@lang('qualitymanagement::lang.title')</th>
|
|
<th>@lang('qualitymanagement::lang.severity')</th><th>@lang('qualitymanagement::lang.status')</th>
|
|
<th>@lang('qualitymanagement::lang.actions')</th>
|
|
</tr></thead>
|
|
<tbody>
|
|
@foreach($ncrs as $ncr)
|
|
<tr>
|
|
<td>{{ $ncr->ref_no }}</td><td>{{ $ncr->title }}</td>
|
|
<td>{{ $ncr->severity }}</td><td>{{ $ncr->status }}</td>
|
|
<td><a class="btn btn-xs btn-info" href="{{ action([\Modules\QualityManagement\Http\Controllers\NcrController::class, 'show'], $ncr->id) }}">@lang('qualitymanagement::lang.view')</a></td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
{{ $ncrs->links() }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endsection
|