@extends('layouts.website.website') @section('content')
List Of Departments
@foreach (App\Department::orderBy('name','ASC')->where('status',1)->get() as $item) @endforeach
Name Description Options
{{ $item->name }} {{ $item->description }}
@endsection