mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Added deleted header
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
65f0a3f535
commit
975b4dee2f
|
@ -552,6 +552,10 @@ class ReportsController extends Controller
|
|||
$header[] = trans('general.updated_at');
|
||||
}
|
||||
|
||||
if ($request->filled('deleted_at')) {
|
||||
$header[] = trans('general.deleted');
|
||||
}
|
||||
|
||||
if ($request->filled('last_audit_date')) {
|
||||
$header[] = trans('general.last_audit');
|
||||
}
|
||||
|
|
|
@ -178,6 +178,13 @@
|
|||
{{ trans('general.updated_at') }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="checkbox col-md-12">
|
||||
<label>
|
||||
{{ Form::checkbox('deleted_at', '1', '1', ['class' => 'minimal']) }}
|
||||
{{ trans('general.deleted') }}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="checkbox col-md-12">
|
||||
<label>
|
||||
{{ Form::checkbox('last_audit_date', '1', '1', ['class' => 'minimal']) }}
|
||||
|
|
Loading…
Reference in a new issue