Import notification file and updated other file..

This commit is contained in:
Cüneyt Şentürk
2021-06-19 22:30:14 +03:00
parent 4687185f4a
commit 5c5b890942
12 changed files with 182 additions and 27 deletions

View File

@ -2,12 +2,17 @@
namespace App\Http\Livewire\Common\Notifications;
use App\Traits\Modules;
use Livewire\Component;
class NewApps extends Component
{
use Modules;
public function render()
{
return view('livewire.common.notifications.new-apps');
$notifications = $this->getNotifications('new-apps');
return view('livewire.common.notifications.new-apps', compact('notifications'));
}
}