34 lines
653 B
PHP
34 lines
653 B
PHP
<?php
|
|
|
|
namespace App\View\Components\ui;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class RouteLink extends Component
|
|
{
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public $link;
|
|
public $class;
|
|
public $color;
|
|
|
|
public function __construct($link = '#', $class = '', $color = 'gray')
|
|
{
|
|
//
|
|
$this->link = $link;
|
|
$this->class = $class;
|
|
$this->color = $color;
|
|
}
|
|
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*/
|
|
public function render(): View|Closure|string
|
|
{
|
|
return view('components.ui.route-link');
|
|
}
|
|
}
|