- Laravel 5.4 compatibility.
- automatic policy detection, making Entity seeding unnecessary.
- automatic adding of
created_by
column in tables, regardless of models. - PHPCI integration.
- initial set of tests, with more to come.
- config file documentation.
- role editing form.
- views to use the projects master layout file and be easier to publish.
- config settings to be more appropriate.
- controllers and models with PHP7 stuff and general clean up.
- routes to use dedicated folder.
- traits to use dedicated folder.
- policies to be much more concise, no methods needed.
- config variables to be more consistent.
- updated README documentation.
$incrementing = false;
to classes usingname
as primary key.- use statements in migrations.
- added routes to
web
route group. - creation of
$user
using helper methodsapp()
andconfig()
.
- reference to User model primary key to not use
$user->id
, but instead$user->getKey()
.
- installation instructions to make sure a User exists in the system.
- installation instructions for adding Entities.
- views to better resemble Spark Settings components, so they can be integrated into Spark.
- entities view, as it wasn't conducive to a good workflow.
- requirement to manually add
Collective\Html
package.
- "laravelcollective/html" as a package dependency.
- moved documentation to https://governor.forlaravel.com.
- Commit initial code, derived from the Bones-Keeper package.