Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Larecipe | 2,123 | 30 | 11 | 4 months ago | 33 | March 25, 2022 | 25 | mit | PHP | |
🍪 Write gorgeous documentation for your products using Markdown inside your Laravel app. | ||||||||||
Laravel Stats | 1,587 | 33 | 23 | 3 months ago | 42 | May 31, 2022 | mit | PHP | ||
📈 Get insights about your Laravel or Lumen Project | ||||||||||
Nova Flexible Content | 716 | 16 | 2 months ago | 30 | April 21, 2022 | 128 | mit | PHP | ||
Flexible Content & Repeater Fields for Laravel Nova | ||||||||||
Laravel Server Monitor | 705 | 5 | 3 | 3 months ago | 36 | January 19, 2022 | mit | PHP | ||
Don't let your servers just melt down | ||||||||||
Awesome Laravel Nova | 455 | a year ago | ||||||||
Curated list of Laravel Nova resources | ||||||||||
Nova Tabs | 419 | 2 | 12 | 7 months ago | 47 | October 05, 2022 | 5 | PHP | ||
Laravel Nova Tabs Package | ||||||||||
Laravel Nova Lang | 396 | 2 | 3 | 2 months ago | 70 | October 28, 2022 | 1 | mit | PHP | |
🌌 Language files for Laravel Nova translated into 40+ languages. Feel free to submit your language or update an existing one! | ||||||||||
Scout Extended | 378 | 11 | 1 | 4 months ago | 48 | October 21, 2022 | 41 | mit | PHP | |
Scout Extended: The Full Power of Algolia in Laravel | ||||||||||
Multitenancy | 367 | 1 | 1 | 5 days ago | 13 | June 07, 2022 | mit | PHP | ||
A simple and opinionated package for providing subdomain based multi-tenancy to Laravel | ||||||||||
Nova Permission | 359 | 7 | 3 | 9 months ago | 52 | August 23, 2022 | 32 | PHP | ||
A Laravel Nova tool for Spatie's laravel-permission library |
This map field currently ONLY shows in details view
You can use this Map Field with three different sort of spatial data:
GeoJSON String property
Latitude and Longitude properties
Latitude and Longitude both in a single text field
Core Laravel Spatial Types
You can set the height of the map in px
The field is disabled in Index and Form views by default
This is very much a WIP - please submit issues to GitHub
To specify what sort of spatial data you are passing to this field you MUST set the spatialType() for example
->spatialType('Point')
These are the valid Spatial Types
Map::make('Some Point Field', 'point_field_name')
->spatialType('Point'),
Map::make('Some Polygon Field', 'polygon_field_name')
->spatialType('Polygon'),
Map::make('Some GeoJSON Field')
->spatialType('GeoJSON')
->geojson('geojson_field_name'),
Map::make('Some Point Location')
->spatialType('LatLon')
->latitude('latitude_field_name')
->longitude('longitude_field_name'),
Map::make('Some Point Location', 'coordinate_field_name')
->spatialType('LatLonField'),
Map::make('Some Point Field', 'point_field_name')
->spatialType('Point')
->height('300px'),
You need to install grimzy/laravel-mysql-spatial into your main application
composer require grimzy/laravel-mysql-spatial
Add the SpatialTrait to your Model
use SpatialTrait;
You then also need to set any spatial fields you have set in the Model
protected $spatialFields = [
'geo_point',
'geo_linestring',
...
];
Your Model is now ready to process spatial data to Nova