D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
3023067
/
cwd
/
www
/
vendor
/
nwidart
/
laravel-modules
/
src
/
Commands
/
stubs
/
Filename :
component-class.stub
back
Copy
<?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$'); } }