Files
izyim/app/Http/ViewComposers/CountriesListComposer.php
T
2019-01-23 23:53:20 +08:00

20 lines
321 B
PHP

<?php
namespace App\Http\ViewComposers;
use Illuminate\View\View;
class CountriesListComposer {
/**
* Bind data to the view.
*
* @param View $view
*
*/
public function compose(View $view): void {
$view->with([
'countriesList' => countries(true)
]);
}
}