芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/resources/views/departments/index.blade.php
@extends('layouts.app') @push('datatable-styles') @include('sections.datatable_css') @endpush @php $addDepartmentPermission = user()->permission('add_department'); @endphp @section('filter-section')
@lang('app.clearFilters')
@lang('modules.department.title')
@lang('app.all')
@foreach ($departments as $department)
{{ ucwords($department->team_name) }}
@endforeach
@endsection @section('content')
@if ($addDepartmentPermission == 'all')
@lang('app.add') @lang('modules.department.title')
@endif
@lang('app.selectAction')
@lang('app.delete')
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
@endsection @push('scripts') @include('sections.datatable_js') @endpush