Added rest of files

This commit is contained in:
Shaun Collins
2026-03-04 16:35:15 +00:00
committed by shaun collins
parent 646041230b
commit 09c4bd02ff
160 changed files with 19001 additions and 0 deletions
+19
View File
@@ -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