@extends('layouts.app') @section('content')

Show Content

Title: {{ $content->title }}
Description: {{ $content->description }}
Images: @php if(!empty($content->images)): $images = json_decode($content->images); foreach($images as $image): @endphp {{ $image }} @php endforeach; endif; @endphp
Created By: {{ App\Models\User::where('id',$content->created_by)->first()->name ?? '' }}
Updated By: {{ App\Models\User::where('id',$content->updated_by)->first()->name ?? ''}}
Status: {{ ucfirst($content->status) }}
@endsection