Description
Detailed description
Hi! wanted to ask some questions as I am confused over the documentation given the use of a generic word like 'entity'
Imagine I have 2 models. SoftDrink and User with the following rules:
- 1 DrinkingUser hasMany SoftDrink.
- 1 SoftDrink belongsTo 1 DrinkingUser
My questions are below:
-
Do I have to add InstantFields trait to both SoftDrinkCrudController and DrinkingUserCrudController?
-
Do I have to do this to both DrinkingUser and SoftDrink backpack routes?
CRUD::resource('soft-drink', 'SoftDrinkCrudController')->with(function () {
Route::any('soft-drink/ajax/{mode?}', 'SoftDrinkCrudController@handleAjaxRequest');
});
CRUD::resource('drinking-user', 'DrinkingUserCrudController')->with(function () {
Route::any('drinking-user/ajax/{mode?}', 'DrinkingUserCrudController@handleAjaxRequest');
});
-
Am I correct to say that
$this->setAjaxEntity('soft-drink');
is added to setup() method of SoftDrinkCrudController only? -
I'm going to add this field definition to DrinkingUserCrudController but it doesn't seem to work (after all users table has no soft_drink_id. Is UserCrudController the right place? Or is this supposed to be added to SoftDrinkCrudController to allow create/edit user to show the field to add soft drinks?
[
'name' => 'soft_drink_id',
'type' => 'select2_from_ajax',
'label' => 'Soft Drink',
'view_namespace' => 'webfactor::fields',
'model' => SoftDrink::class,
'entity' => 'soft-drink',
'attribute' => 'name',
'placeholder' => 'Choose',
'minimum_input_length' => 0,
'on_the_fly' => [
'entity' => 'soft-drink', // e. g. user, contact, company etc...
],
],
- For instant create button in list view, May I assume it is this?
Inside DrinkingUserCrudController
$this->addInstantCreateButtonToList(
'soft-drink', // foreign entity. Should it be soft-drink or softDrinks?
'add soft drink', // content of the button
'soft-drink-id', // the name of the ID of the current entity will be
);
Thank you!