@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')
@foreach ($acceptances as $acceptance) @endforeach
{{ trans('general.name')}} {{ trans('table.actions')}}
{{ ($acceptance->checkoutable) ? $acceptance->checkoutable->present()->name : '' }} {{ trans('general.accept_decline') }}
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop