@extends('system-mgmt.department.base') @section('action-content')

List of departments

{{ csrf_field() }} @component('layouts.search', ['title' => 'Search']) @component('layouts.two-cols-search-row', ['items' => ['Name'], 'oldVals' => [isset($searchingVals) ? $searchingVals['name'] : '']]) @endcomponent @endcomponent
@foreach ($departments as $department) @endforeach
Department Name Action
{{ $department->name }}
Update
Department Name Action
Showing 1 to {{count($departments)}} of {{count($departments)}} entries
{{ $departments->links() }}
@endsection