![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/app/Http/Controllers/Front/Addresses/ |
<?php namespace App\Http\Controllers\Front\Addresses; use App\Http\Controllers\Controller; use App\Shop\Countries\Repositories\CountryRepository; use App\Shop\Countries\Repositories\Interfaces\CountryRepositoryInterface; class CountryStateController extends Controller { private $countryRepo; /** * CountryStateController constructor. * * @param CountryRepositoryInterface $countryRepository */ public function __construct(CountryRepositoryInterface $countryRepository) { $this->countryRepo = $countryRepository; } /** * @param $countryId * * @return \Illuminate\Http\JsonResponse */ public function index($countryId) { $country = $this->countryRepo->findCountryById($countryId); $countryRepo = new CountryRepository($country); $data = $countryRepo->listStates(); return response()->json(compact('data')); } }