@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.depreciation_report') }} @parent @stop {{-- Page content --}} @section('content')
@if (($depreciations) && ($depreciations->count() > 0))
@else
{!! trans('admin/depreciations/general.no_depreciations_warning') !!}
@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop