@extends('layouts.master')
@section('title', 'User')
@push('css')
@endpush
@section('content')
Depertment Information
| Serial |
Department Name |
Description |
Action |
@foreach ($departments as $department)
| {{ $loop->iteration }} |
{{ $department->name }} |
{{ $department->description }} |
|
@endforeach
@endsection
@push('js')
@endpush