update
This commit is contained in:
46
app/Notifications/StoryLikedNotification.php
Normal file
46
app/Notifications/StoryLikedNotification.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Notifications;
|
||||
|
||||
use App\Models\Story;
|
||||
use App\Models\User;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Notifications\Notification;
|
||||
|
||||
class StoryLikedNotification extends Notification
|
||||
{
|
||||
use Queueable;
|
||||
|
||||
public function __construct(
|
||||
private readonly Story $story,
|
||||
private readonly User $actor,
|
||||
) {}
|
||||
|
||||
public function via(object $notifiable): array
|
||||
{
|
||||
return ['database'];
|
||||
}
|
||||
|
||||
public function databaseType(object $notifiable): string
|
||||
{
|
||||
return 'story_liked';
|
||||
}
|
||||
|
||||
public function toDatabase(object $notifiable): array
|
||||
{
|
||||
$label = $this->actor->name ?: $this->actor->username ?: 'Someone';
|
||||
|
||||
return [
|
||||
'type' => 'story_liked',
|
||||
'story_id' => (int) $this->story->id,
|
||||
'story_title' => $this->story->title,
|
||||
'actor_id' => (int) $this->actor->id,
|
||||
'actor_name' => $this->actor->name,
|
||||
'actor_username' => $this->actor->username,
|
||||
'message' => $label . ' liked your story',
|
||||
'url' => route('stories.show', ['slug' => $this->story->slug]),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user