23 lines
439 B
PHP
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()
|
||
|
]);
|
||
|
}
|
||
|
}
|