app/Http/ViewComposers/CurrencySelectViewComposer.php
use Illuminate\View\View;use App\Models\Settings\Currency; class CurrencySelectViewComposer{ public function compose(View $view) { $currencies = Currency::orderBy('name', 'asc')->get(); $view->with('currencies', $currencies); }}