@extends('admin.layouts.app') @section('content')
| Sr.Nom | Title | Description | Sort Order | Status | Have Popup | Action |
|---|---|---|---|---|---|---|
| {{ $newsUpdate->id }} | {{ \Illuminate\Support\Str::limit($newsUpdate->title ?? '', 20) }} | {{ \Illuminate\Support\Str::limit($newsUpdate->description ?? '', 20) }} | {{ $newsUpdate->sort_num ?? '😒' }} | @if ($newsUpdate->have_popup == 1) Active @else @endif |
@can('edit-news-update')
Edit
@endcan
@can('delete-news-update')
@endcan
|