@extends('admin.layouts.app') @section('content')
| Sr.Nom | Category | Image | Video URL | Year | Status | Highlights | Uploaded Date | Action |
|---|---|---|---|---|---|---|---|---|
| {{ $gallery->id }} | {{ \Illuminate\Support\Str::limit($gallery->galleryCategory->category ?? '', 20) }} |
@if (!empty($gallery->img_src))
@endif
|
{{ \Illuminate\Support\Str::limit($gallery->video_url ?? '', 20) }} | {{ $gallery->year }} | {{ $gallery->uploaded_date }} |
@can('edit-gallery')
Edit
@endcan
@can('delete-gallery')
@endcan
|
| Sr.Nom | Caption | Video URL | Year | Status | Action |
|---|---|---|---|---|---|
| {{ $video->id }} | @empty(!$video->img_caption) {{ $video->img_caption ?? '' }} @endempty | {{ $video->video_url }} | {{ $video->year }} |
@can('edit-gallery')
Edit
@endcan
@can('delete-gallery')
@endcan
|