mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
65 lines
2 KiB
PHP
Executable file
65 lines
2 KiB
PHP
Executable file
@extends('layouts/default')
|
|
@php
|
|
!empty($user) ? $full_name = $user->present()->full_name : $full_name = '';
|
|
@endphp
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('general.accept_assets', array('name' => $full_name)) }}
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Account page content --}}
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-default">
|
|
|
|
<div class="box-body">
|
|
<!-- checked out Accessories table -->
|
|
|
|
<div class="table-responsive">
|
|
<table
|
|
data-cookie-id-table="pendingAcceptances"
|
|
data-pagination="true"
|
|
data-id-table="pendingAcceptances"
|
|
data-search="true"
|
|
data-side-pagination="client"
|
|
data-show-columns="true"
|
|
data-show-export="true"
|
|
data-show-refresh="true"
|
|
data-sort-order="asc"
|
|
id="pendingAcceptances"
|
|
class="table table-striped snipe-table"
|
|
data-export-options='{
|
|
"fileName": "my-pending-acceptances-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'>
|
|
<thead>
|
|
<tr>
|
|
<th>{{ trans('general.name')}}</th>
|
|
<th>{{ trans('table.actions')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($acceptances as $acceptance)
|
|
<tr>
|
|
<td>{{ ($acceptance->checkoutable) ? $acceptance->checkoutable->present()->name : '' }}</td>
|
|
<td><a href="{{ route('account.accept.item', $acceptance) }}" class="btn btn-default btn-sm">{{ trans('general.accept_decline') }}</a></td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div> <!-- .box-body-->
|
|
</div><!--.box.box-default-->
|
|
</div> <!-- .col-md-12-->
|
|
</div> <!-- .row-->
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table')
|
|
@stop
|