File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/platform/table/src/HeaderActions/HeaderAction.php
Back
<?php namespace Botble\Table\HeaderActions; use Botble\Base\Supports\Builders\HasAttributes; use Botble\Base\Supports\Builders\HasColor; use Botble\Base\Supports\Builders\HasIcon; use Botble\Base\Supports\Builders\HasLabel; use Botble\Base\Supports\Builders\HasPermissions; use Botble\Base\Supports\Builders\HasUrl; use Illuminate\Contracts\Support\Arrayable; class HeaderAction implements Arrayable { use HasLabel; use HasColor; use HasIcon; use HasUrl; use HasPermissions; use HasAttributes; public function __construct(protected string $name) { } public static function make(string $name): static { return app(static::class, ['name' => $name]); } public function getName(): string { return $this->name; } public function toArray(): array { return [ 'className' => sprintf('action-item %s %s', $this->getColor(), $this->getAttribute('class')), 'text' => view('core/table::includes.header-action', ['action' => $this])->render(), ]; } public function route(string $route, array $parameters = [], bool $absolute = true): static { $this ->url(fn (HeaderAction $action) => route($route, $parameters, $absolute)) ->permission($route); return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.53 |
proxy
|
phpinfo
|
Settings