surzhikov/location

DaData 服务(地理编码)的 Eloquent 风格包装(用于 Laravel)

dev-master 2021-11-01 12:26 UTC

This package is auto-updated.

Last update: 2024-08-29 05:56:01 UTC


README

DaData.ru 地理编码的 Eloquent 风格包装(用于 Laravel)

示例

use \Surzhikov\Location\Location;
$locations = Location::where('address', 'like', 'Мосва, улица Ленинский просп дом 4')
    ->limit(10)
    ->where('level', '>=', 'city')
    ->get();