mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-22 20:59:46 -06:00
- github action updated with new ruleset in pint.json - codebase linted with new ruleset - contributors can now run `./vendor/bin/pint` - action workflow will auto correct any lint issues upon commit/opened pull request
61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Notifications;
|
|
|
|
use App\Models\Topic;
|
|
use App\Models\User;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class NewTopic extends Notification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
/**
|
|
* NewTopic Constructor.
|
|
*/
|
|
public function __construct(public string $type, public User $user, public Topic $topic)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*/
|
|
public function via($notifiable): array
|
|
{
|
|
return ['database'];
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*/
|
|
public function toArray($notifiable): array
|
|
{
|
|
if ($this->type == 'staff') {
|
|
return [
|
|
'title' => $this->user->username.' Has Posted In A Staff Forum',
|
|
'body' => $this->user->username.' has started a new staff topic in '.$this->topic->forum->name,
|
|
'url' => route('forum_topic', ['id' => $this->topic->id]),
|
|
];
|
|
}
|
|
|
|
return [
|
|
'title' => $this->user->username.' Has Posted In A Subscribed Forum',
|
|
'body' => $this->user->username.' has started a new topic in '.$this->topic->forum->name,
|
|
'url' => sprintf('/forums/topics/%s', $this->topic->id),
|
|
];
|
|
}
|
|
}
|