ardent
ardent copied to clipboard
Self-validating, secure and smart models for Laravel's Eloquent ORM
Input facade is deprecated. https://laravel.com/docs/6.x/upgrade#the-input-facade snake_case and camel_case are deprecated. https://laravel.com/docs/6.x/upgrade#helpers Added Facade and ServiceProvider for Ardent.
This includes my fixes from #176 and #144 (previously `bexarcreativeinc-master` branch)
Seems to be breaking after updating Laravel 5.3. Update soon?
I am upgrading my application from Laravel 4.2 to Laravel 5.0. But "laravelbook/ardent": "3.*" is throwing errors while running composer update command. I was using "laravelbook/ardent": "2.*" in Laravel 4.2....
@lloricode, could you please use version `dev-fix-autodiscovery` and check if it all works fine now? Make sure you try to instantiate an Ardent model and run a query on it....
Under certain conditions, it seems that the backtrace index for the `belongsTo()` method is incorrect. Under a broken condition, my backtrace looks like below. ``` array:4 [ 0 => array:6...
See #37
Taylor recently made a changes to model file in order to enable polymorphic eager loading. More details here https://github.com/laravel/framework/commit/6e0ebee17789431b7c83f1cdcb35213255817905. The polymorphic eager loading was added only in 4.1.24 version of...
That validator only validates the field when it is specified in the form's data (when it's in the attributes). Ardent used the model's attributes instead of using the actual data...