2022-03-05 16:02:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\View\Components;
|
|
|
|
|
|
|
|
use App\Models\Providers;
|
2022-03-05 16:58:25 +01:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2022-03-05 16:02:12 +01:00
|
|
|
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()
|
|
|
|
{
|
2022-03-05 16:58:25 +01:00
|
|
|
$all_providers = Cache::rememberForever('all_providers', function () {
|
|
|
|
return Providers::all();
|
|
|
|
});
|
2022-03-05 16:02:12 +01:00
|
|
|
return view('components.providers-select', [
|
2022-03-05 16:58:25 +01:00
|
|
|
'providers' => $all_providers
|
2022-03-05 16:02:12 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|