- Remove unused FeaturesController (empty stubs, no routes) - Remove ConvertSpatialFile CLI command (unused; service used in LayerManager) - Remove MigrateGeojsonToFeatures CLI command (one-shot migration, not referenced) - Remove .claude/worktrees/ (11 old agent worktrees from June) - Apply Laravel Pint formatting across 219 files (style only, no functional changes) Tests: 101 passing (319 assertions) API routes: unchanged (8 routes intact)
45 lines
978 B
PHP
45 lines
978 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Common;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Livewire\Component;
|
|
|
|
class NotificationBell extends Component
|
|
{
|
|
public $notifications = [];
|
|
|
|
public $unreadCount = 0;
|
|
|
|
public $showDropdown = false;
|
|
|
|
public function mount()
|
|
{
|
|
$this->loadNotifications();
|
|
}
|
|
|
|
public function loadNotifications()
|
|
{
|
|
$user = Auth::user();
|
|
$this->notifications = $user->notifications()->latest()->take(10)->get()->toArray();
|
|
$this->unreadCount = $user->unreadNotifications()->count();
|
|
}
|
|
|
|
public function markAsRead($id)
|
|
{
|
|
Auth::user()->notifications()->where('id', $id)->update(['read_at' => now()]);
|
|
$this->loadNotifications();
|
|
}
|
|
|
|
public function markAllAsRead()
|
|
{
|
|
Auth::user()->unreadNotifications->markAsRead();
|
|
$this->loadNotifications();
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.common.notification-bell');
|
|
}
|
|
}
|