snipe-it/resources/views/depreciations/view.blade.php

55 lines
1.7 KiB
PHP
Raw Normal View History

2017-10-17 11:20:05 -07:00
@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ trans('general.depreciation') }}
: {{ $depreciation->name }}
@parent
@stop
@section('header_right')
<a href="{{ route('depreciations.edit', ['depreciation' => $depreciation->id]) }}" class="btn btn-sm btn-primary pull-right">{{ trans('admin/depreciations/table.update') }} </a>
@stop
{{-- Page content --}}
@section('content')
<div class="row">
<div class="col-md-12">
<div class="box box-default">
<div class="box-body">
<div class="row">
<div class="col-md-12">
<div class="table table-responsive">
<table
name="location_users"
id="table-users"
class="table table-striped snipe-table"
data-url="{{ route('api.assets.index',['depreciation'=> $depreciation->id]) }}"
data-cookie="true"
data-click-to-select="true"
data-cookie-id-table="department_usersDetailTable">
<thead>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@stop
@section('moar_scripts')
@include ('partials.bootstrap-table', [
'exportFile' => 'assets-export',
'search' => true,
'columns' => \App\Presenters\AssetPresenter::dataTableLayout()
])
@stop