@extends('dash.layouts.app') @section('title') Pages @endsection @section('content') @if ($errors->any())
@endif
Basic Contents

{{@$content->title}}

@if($content->status==TRUE)
Published
@else
Unpublished
@endif

{!!$content->p_desc!!}

SEO

Meta Description : @if($content->meta_desc) {{$content->meta_desc}} @else No Meta Desc @endif

Meta Keywords : @if($content->meta_keywords) {{$content->meta_keywords}} @else No Keywords @endif

OG Image : @if($content->og_image) @else No OG Image @endif
@include('dash.pages.edit') @endsection @push('footer') @if ($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif @endpush