You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
403 B
22 lines
403 B
<?php
|
|
|
|
namespace $NAMESPACE$;
|
|
|
|
use Illuminate\View\Component;
|
|
use Illuminate\View\View;
|
|
|
|
class $CLASS$ extends Component
|
|
{
|
|
/**
|
|
* Create a new component instance.
|
|
*/
|
|
public function __construct() {}
|
|
|
|
/**
|
|
* Get the view/contents that represent the component.
|
|
*/
|
|
public function render(): View|string
|
|
{
|
|
return view('$LOWER_NAME$::$COMPONENT_NAME$');
|
|
}
|
|
}
|
|
|