<?php
namespace App\Livewire;
use Livewire\Component;
use App\Models\SupportMail;
use App\Models\UserActivity;
class TopBar extends Component
{
public $notifications = [];
public $messages = [];
public function mount()
{
$this->notifications = UserActivity::with('user')->latest()->limit(5)->get();
$this->messages = SupportMail::with('user')->latest()->limit(5)->get();
}
public function render()
{
return view('livewire.top-bar');
}
}