%PDF- %PDF-
Direktori : /usr/local/apache/htdocs/app/View/Components/ |
Current File : //usr/local/apache/htdocs/app/View/Components/EditCommandeModal.php |
<?php namespace App\View\Components; use App\Models\Product; use Illuminate\View\Component; class EditCommandeModal extends Component { public $produits; /** * Create a new component instance. * * @return void */ public function __construct() { $this->produits = Product::where('parent_id', 0)->get(); } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|\Closure|string */ public function render() { return view('components.edit-commande-modal'); } }