Files
kulakpos_web/public/restaurant/stubs/nwidart-stubs/component-class.stub

23 lines
403 B
Plaintext
Raw Normal View History

2026-03-15 17:08:23 +07:00
<?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$');
}
}