Re-add search functionality

This commit is contained in:
Jonny Barnes 2023-04-11 21:16:06 +01:00
parent 92c0a517c2
commit 58c5a7d443
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
11 changed files with 297 additions and 19 deletions

View file

@ -0,0 +1,25 @@
<?php
namespace App\Http\Controllers;
use App\Models\Note;
use Illuminate\Http\Request;
use Illuminate\View\View;
class SearchController extends Controller
{
public function search(Request $request): View
{
$search = $request->input('q');
$notes = Note::search($search)
->paginate();
/** @var Note $note */
foreach ($notes as $note) {
$note->load('place', 'media', 'client');
}
return view('search', compact('search', 'notes'));
}
}