docs
docs copied to clipboard
I have a `movements` table and the `Movement` model class This table has fields for morphing - coinable_type - coinable_id This model class has relationship ``` public function coinable(): MorphTo...
Our fields and columns support an ever growing list of attributes. Like everything, it started small: `name, type, label, hint` ... and we now have `validationRules, pivotSelect, subfields, data_source` I...
Page: https://backpackforlaravel.com/docs/6.x/crud-operation-inline-create I am setting up field as CRUD::field([ 'name' => 'address', 'inline_create' => true, ]) ->type('relationship') ->label('Address') ->wrapper(['class' => 'form-group col-md-6']) ; Note: i am omitting ajax Anyway, this...
@promatik said he tried to add a placeholder and things are inconsistent there. Sometimes you pass it to a field in "attributes", sometimes directly.
Improve setupShowOperation() docs
In pages like https://backpackforlaravel.com/docs/5.x/crud-fields it would be good to have the option to go to the top with one click. Go to te top of the page or the secction...
I believe, A lifecycle page with a figure would enhance understanding toward backpack architecture and provide clarity to the sequence of all events & functions which are being called. @tabacitu...
Similar to [how CodeIgniter does it](https://codeigniter.com/user_guide/overview/appflow.html), we could create a simple diagram to explain how CRUDs work: - route points to controller - controller - extends CrudController from the package...