@extends('layouts.contentLayoutMaster') @section('title', 'Manage Resources') @section('content')
| ID | Thumb | Title | Subtitle | Description | Tags | Actions |
|---|---|---|---|---|---|---|
| {{ $r->id }} |
@if(!empty($r->thumb_url))
@endif
|
{{ $r->title }} | {{ $r->subtitle }} | {{ Str::limit(strip_tags($r->description ?? ''), 200) }} | @php $tags = is_array($r->tags) ? $r->tags : (is_string($r->tags) && trim($r->tags) !== '' ? explode(',', $r->tags) : []); $tags = array_map('trim', $tags); @endphp @if(!empty($tags)) @foreach($tags as $t) @if($t !== '') {{ $t }} @endif @endforeach @endif | Edit |
| No resources yet. | ||||||