1. Go to this page and download the library: Download phaza/laravel-postgis library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
phaza / laravel-postgis example snippets
$model->myPoint = new Point(1,2); //lat, long
$table->polygon('myColumn');
'MStaack\LaravelPostgis\DatabaseServiceProvider',
useIlluminate\Database\Migrations\Migration;
useMStaack\LaravelPostgis\Schema\Blueprint;
classCreateLocationsTableextendsMigration{
/**
* Run the migrations.
*
* @return void
*/publicfunctionup(){
Schema::create('locations', function(Blueprint $table){
$table->increments('id');
$table->string('name');
$table->string('address')->unique();
$table->point('location'); // GEOGRAPHY POINT column with SRID of 4326 (these are the default values).
$table->point('location2', 'GEOGRAPHY', 4326); // GEOGRAPHY POINT column with SRID of 4326 with optional parameters.
$table->point('location3', 'GEOMETRY', 27700); // GEOMETRY column with SRID of 27700.
$table->polygon('polygon'); // GEOGRAPHY POLYGON column with SRID of 4326.
$table->polygon('polygon2', 'GEOMETRY', 27700); // GEOMETRY POLYGON column with SRID of 27700.
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/publicfunctiondown(){
Schema::drop('locations');
}
}