19 lines
354 B
PHP
Raw Normal View History

2021-06-19 18:16:09 +03:00
<?php
namespace App\Http\Livewire\Common\Notifications;
use App\Traits\Modules;
2021-06-19 18:16:09 +03:00
use Livewire\Component;
class NewApps extends Component
{
use Modules;
2021-06-19 18:16:09 +03:00
public function render()
{
$notifications = $this->getNotifications('new-apps');
return view('livewire.common.notifications.new-apps', compact('notifications'));
2021-06-19 18:16:09 +03:00
}
}