PHP Classes

File: resources/views/viewblog.blade.php

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   Laravel Blogging Platform   resources/views/viewblog.blade.php   Download  
File: resources/views/viewblog.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 4 years ago
Size: 240 bytes
 

Contents

Class file image Download
@extends('layouts.theme')

@section('title') {{$blog->title}} @endsection

@section('content')
<div class="content">
    <div class="title m-b-md">
        {{ $blog->title }}
    </div>

    <p>{!! $blog->content !!}</p>
</div>
@endsection