Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace App\Livewire;
namespace App\Livewire\Pages;

use App\Policies\NotificationPolicy;
use Carbon\Carbon;
Expand All @@ -13,7 +13,7 @@
use Illuminate\Support\Facades\Auth;
use Livewire\Component;

final class NotificationsPage extends Component
final class Notifications extends Component
{
use AuthorizesRequests;

Expand Down Expand Up @@ -48,7 +48,7 @@ public function markAsRead(string $notificationId): void

public function render(): View
{
return view('livewire.notifications-page', [
return view('livewire.pages.notifications', [
// @phpstan-ignore-next-line
'notifications' => Auth::user()
->unreadNotifications()
Expand Down
208 changes: 0 additions & 208 deletions resources/views/livewire/notifications-page.blade.php

This file was deleted.

Loading
Loading