<?php
namespace App\Komma\Zipcodes;
use App\Komma\Zipcodes\Models\Zipcode;
final class ZipcodeService
{
public function getZipcodeByCountryAndZipcodePart(string $country, string $zipcodePart)
{
return Zipcode::where('country', $country)
->where('zipcode', 'like', $zipcodePart.'%')
->get();
}
}