Edit File: CountryController.php
<?php namespace App\Http\Controllers\Admin; use App\Services\Entity\CountryService; class CountryController extends BaseController { public function __construct(CountryService $countryService) { parent::__construct($countryService); view()->share('flags', getFlags()); } }
Back to File Manager