huge Laravel 10 upgrade

This commit is contained in:
HolgerHatGarKeineNode
2023-02-19 20:13:20 +01:00
parent 5c74f77beb
commit 12847f95f6
440 changed files with 46336 additions and 682 deletions

View File

@@ -29,7 +29,7 @@ class Meetups extends Component
public function mount()
{
if (! auth()->user()) {
if (!auth()->user()) {
return to_route('auth.ln');
}
@@ -64,6 +64,9 @@ class Meetups extends Component
public function updatedSearch($value)
{
$this->meetups = Meetup::query()
->with([
'city',
])
->where('name', 'ilike', '%'.$value.'%')
->orderBy('name')
->limit(10)