@extends('backend.layouts.app') @section('title') Department List @endsection @section('content')
Department List
@foreach ($departments as $index => $item) @endforeach
# Created At Order Name Actions
{{ $departments->firstItem() + $index }} {{ $item->created_at->format('d M, Y') }}
@csrf
{{ $item->name }}
{{ $departments->links() }}
@endsection @push('script') @endpush