@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
@can('unit.create') Add @endcan
@forelse ($units as $key => $unit) @empty @endforelse
S.N Title Slug Code Status Action
{{ $key + 1 }} {{ $unit->title }} {{ $unit->slug }} {{ $unit->code }} {!! $unit->status_name !!}
@can('unit.show') @endcan @can('unit.edit') @endcan @can('unit.destroy') @endcan
@endsection