main

filamentphp/demo

Last updated at: 29/12/2023 09:43

Notifications.php

TLDR

This file is a component class named Notifications in the App\Livewire namespace. It extends the Component class from the Livewire package. The render method returns the view livewire.notifications.

Classes (1)

Notifications

This class is a component class that extends the Component class from the Livewire package. It has a single method named render that returns the view livewire.notifications.

<?php

namespace App\Livewire;

use Livewire\Component;

class Notifications extends Component
{
    public function render()
    {
        return view('livewire.notifications');
    }
}