File: /home/posscale/public_html/printmanager/vendor/filament/actions/src/RestoreAction.php
<?php
namespace Filament\Actions;
use Filament\Actions\Concerns\CanCustomizeProcess;
use Filament\Support\Facades\FilamentIcon;
use Illuminate\Database\Eloquent\Model;
class RestoreAction extends Action
{
use CanCustomizeProcess;
public static function getDefaultName(): ?string
{
return 'restore';
}
protected function setUp(): void
{
parent::setUp();
$this->requiresConfirmation();
$this->label(__('filament-actions::restore.single.label'));
$this->modalHeading(fn (): string => __('filament-actions::restore.single.modal.heading', ['label' => $this->getRecordTitle()]));
$this->modalSubmitActionLabel(__('filament-actions::restore.single.modal.actions.restore.label'));
$this->successNotificationTitle(__('filament-actions::restore.single.notifications.restored.title'));
$this->defaultColor('gray');
$this->groupedIcon(FilamentIcon::resolve('actions::restore-action.grouped') ?? 'heroicon-m-arrow-uturn-left');
$this->modalIcon(FilamentIcon::resolve('actions::restore-action.modal') ?? 'heroicon-o-arrow-uturn-left');
$this->action(function (Model $record): void {
if (! method_exists($record, 'restore')) {
$this->failure();
return;
}
$result = $this->process(static fn () => $record->restore());
if (! $result) {
$this->failure();
return;
}
$this->success();
});
$this->visible(static function (Model $record): bool {
if (! method_exists($record, 'trashed')) {
return false;
}
return $record->trashed();
});
}
}