@extends('layouts.app_rest') @section('content')
@can('department.create') @endcan @can('department.update') @endcan @can('department.delete') @endcan
@can('department.view')
Show rows @foreach($departments as $department) @endforeach
Name Location Icon Status
{{ $department['name'] }} {{ $department['location'] }} Product Icon @if($department['status']=== 'Active') {{ $department['status'] }} @else {{ $department['status'] }} @endif
{{$departments->links('vendor.pagination.tailwind')}}
@endcan
@endsection @section('javascript') @endsection