mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 20:25:05 +02:00
22 lines
311 B
PHP
22 lines
311 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Actions\Base;
|
|
|
|
use Filament\Actions\Action;
|
|
|
|
class MarkAsReadAction extends Action
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->name('mark-as-read');
|
|
|
|
$this->button();
|
|
|
|
$this->markAsRead();
|
|
}
|
|
}
|