@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.depreciation_report') }} @parent @stop {{-- Page content --}} @section('content')
@if (($depreciations) && ($depreciations->count() > 0))
@else
Warning: You do not currently have any depreciations set up. Please set up at least one depreciation to view the depreciation report.
@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop