@extends('user-management.master') @section('header') @parent @endsection @section('breadcrumb') @include('mekaeils-package.layouts.breadcrumb',[ 'pageTitle' => 'Departments', 'lists' => [ [ 'link' => '#', 'name' => 'User Management', ], [ 'link' => '#', 'name' => 'Departments', ] ] ]) @endsection @section('content')
new department

List of the departments

@foreach ($departments as $item) @endforeach
# Title Parent Actions
{{ $item->id }} {{ $item->title }} {{ $item->parent ? $item->parent->title : '----' }} Edit
@method('DELETE') {{ csrf_field() }}
@endsection @section('footer') @parent @endsection