1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\View\Components;
- use App\Helpers\Utils;
- use Illuminate\View\Component;
- use App\Models\Parameter\Modal;
- class NavBarFormComponent extends Component
- {
- /**
- * Create a new component instance.
- *
- * @return void
- */
- public function __construct()
- {
- //
- }
- /**
- * Get the view / contents that represent the component.
- *
- * @return \Illuminate\Contracts\View\View|\Closure|string
- */
- public function render()
- {
- $form = (new Modal('/etc/common/user-menu'))->getData();
- return view('components.nav-bar-form-component', compact('form'));
- }
- }
|