my-idlers/app/View/Components/ProvidersSelect.php
cp6 a314ac99ef Initial v2 commit
Initial v2 commit

Laravel project
2022-02-18 15:48:32 +11:00

23 lines
439 B
PHP

<?php
namespace App\View\Components;
use App\Models\Providers;
use Illuminate\View\Component;
class ProvidersSelect extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.providers-select', [
'providers' => Providers::all()
]);
}
}