Skip to content

Commit

Permalink
Remove old blog handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
JSn1nj4 committed Jul 5, 2024
1 parent 3c2d140 commit 9a3a9e5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 37 deletions.
8 changes: 0 additions & 8 deletions app/Http/Controllers/BlogPostsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,9 @@

use App\Models\Post;
use Illuminate\Contracts\View\View;
use Illuminate\Http\Request;

class BlogPostsController extends Controller
{
public function index(Request $request): View
{
return view('blog.index', [
'posts' => Post::index($request),
]);
}

public function show(Post $post): View
{
return view('blog.post', ['post' => $post->load('searchMeta')]);
Expand Down
29 changes: 0 additions & 29 deletions resources/views/blog/index.blade.php

This file was deleted.

0 comments on commit 9a3a9e5

Please sign in to comment.