@extends('layouts/default') {{-- Page title --}} @section('title') {{ $department->name }} {{ trans('general.department') }} @parent @stop @section('header_right') @endsection {{-- Page content --}} @section('content') @endsection @section('moar_scripts') @can('files', $department) @include ('modals.upload-file', ['item_type' => 'departments', 'item_id' => $department->id]) @endcan @include ('partials.bootstrap-table', ['exportFile' => 'department-' . $department->name . '-export', 'search' => false]) @endsection