@extends('admin.layouts.app') @section('content')
| Sr.No | Master Date | Title | Description | Status | Action |
|---|---|---|---|---|---|
| {{ $masterTopic->id }} | {{ $masterTopic->masterDate->date ?? '' }} {{-- || {{ $masterTopic->masterDate->type_id == '1' ? 'Master class' : 'Workshop series' }} --}} | {{ \Illuminate\Support\Str::limit($masterTopic->title ?? '', 30) }} | {{ \Illuminate\Support\Str::limit($masterTopic->description ?? '', 10) }} |
@can('edit-master')
Edit
@endcan
@can('delete-master')
@endcan
|