Files
api-extranetwork/app/Core/Service/CountryService.php
ExtraNetwork e5c4b6aa13 first commit
2026-05-12 17:04:54 +03:00

44 lines
1.1 KiB
PHP

<?php
namespace App\Core\Service;
use App\Core\Repository\Country\CountryRepository;
use App\Exceptions\ApiErrorException;
use Illuminate\Support\Facades\Log;
class CountryService
{
private $countryRepository;
public function __construct ( CountryRepository $countryRepository )
{
$this->countryRepository = $countryRepository;
}
public function getCountryList ( array $criteria = [],$columns = ["*"] )
{
$response = ['status' => -1, 'message' => '', 'data' => null];
try {
$data = $this->countryRepository->findByCriteria($criteria, $columns);
$response = [
'status' => true,
'data' => $data,
];
} catch (ApiErrorException $e) {
$response['message'] = $e->getMessage();
} catch (Exception $e) {
$message = $e->getFile() . " " . $e->getLine() . " " . $e->getMessage();
Log::error($message);
$response['message'] = $e->getMessage();
}
return output($response);
}
}