Edit File: RegionController.php
<?php namespace App\Http\Controllers\Admin; use App\Services\Entity\RegionService; class RegionController extends BaseController { public function __construct(RegionService $service) { parent::__construct($service); } }
Back to File Manager