@extends('layouts.admin') @section('title') Admin | CMS Page Details @endsection @section('content')

CMS/Page

CMS Page Details
  • Title: {{ $page->name }}
  • Slug: {{ $page->slug }}
  • Tags: {{ $page->tags }}
  • Description: {!! $page->description !!}
  • Image: @if(!empty($page->photo) && $page->photo->file_path) page Image @endif
  • Meta Title: {{ $page->meta_title }}
  • Meta Description: {!! $page->meta_description !!}
  • Meta Keywords: {{ $page->meta_keywords }}
@endsection