PHP Classes

File: src/stubs/cms/core/page/resources/views/site/page.blade.php

Recommend this page to a friend!
  Classes of Shun Ram   Laravel Admin   src/stubs/cms/core/page/resources/views/site/page.blade.php   Download  
File: src/stubs/cms/core/page/resources/views/site/page.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Admin
Manage users and the site content they publish
Author: By
Last change:
Date: 1 year ago
Size: 365 bytes
 

Contents

Class file image Download
@extends('layout::site.master')

@section('sIte_tItle','Page')
@section('addlinks')

@endsection

@section('body')
    <div class="container">
        @if(count((array) $data)==0)
            <h1>Page Not Found</h1>
        @else
            <h2>{!! $data->title !!}</h2>
            {!! $data->page_content !!}
        @endif
    </div>
@endsection