ok

Mini Shell

Direktori : /home2/selectio/www/billingsoftwarenew/core/app/View/Components/
Upload File :
Current File : /home2/selectio/www/billingsoftwarenew/core/app/View/Components/ViserForm.php

<?php

namespace App\View\Components;

use App\Models\Form;
use Illuminate\View\Component;

class ViserForm extends Component {
    /**
     * Create a new component instance.
     *
     * @return void
     */

    public $identifier;
    public $identifierValue;
    public $form;
    public $formData;

    public function __construct($identifier, $identifierValue) {
        $this->identifier = $identifier;
        $this->identifierValue = $identifierValue;
        $this->form = Form::where($this->identifier, $this->identifierValue)->first();
        $this->formData = @$this->form->form_data ?? [];
    }

    /**
     * Get the view / contents that represent the component.
     *
     * @return \Illuminate\Contracts\View\View|\Closure|string
     */
    public function render() {
        return view('components.viser-form');
    }
}

Zerion Mini Shell 1.0