Added rest of files
This commit is contained in:
committed by
shaun collins
parent
646041230b
commit
09c4bd02ff
@@ -0,0 +1,19 @@
|
||||
@extends('layouts.main')
|
||||
@section('content')
|
||||
<div class="container mt-5">
|
||||
<div class="card shadow-sm">
|
||||
<div class="card-header bg-dark text-white">
|
||||
<h1 class="card-title text-center">{{ $blog->title }}</h1>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="">
|
||||
{{ $blog->slug }}
|
||||
@include($blog->view)
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-footer text-muted text-center">
|
||||
<small>Published on {{ $blog->created_at->format('F j, Y') }}</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user