Cristian Tăbăcitu
Cristian Tăbăcitu
[4.2][Proposal] Rename "image" field into "cropper"; Add new field "image" that only shows a preview
The issue was briefly raised in https://github.com/Laravel-Backpack/CRUD/pull/2166#issuecomment-545817627 . Basically: **what we have now as the ```image``` field type isn't _actually_ an image field type**, it's become in time, after adding...
# Feature Request ### What's the feature you think DevTools should have? Someone suggested by email they expected to be able to generate Migrations from existing MySQL tables. Which is...
PR Laravel-Backpack/CRUD#3948 got closed automatically when we launched v5 and moved that file to `backpack/pro`. But we should still consider doing that.
# Feature Request ### What's the feature you think Backpack should have? When using [the `image` field type](https://backpackforlaravel.com/docs/4.1/crud-fields#image-1), perhaps instead of the lengthy mutator example, we can provide an accompanying...
# Bug report ### What I did Added Hero to the demo, which _should_ be using `monsters` as the pivot table. The idea was that... if Monster were a pivot...
# Bug report ### What I did Tried to use the Reorder operation on a Model where - columns are `parent_id`, `depth`, `left`, `right` - instead of `parent_id`, `depth`, `lft`,...
Would do the same thing as `Reorder` but without the nesting. It only needs one column from the model, which by default is `order` but it can be customized to...
I checked, `view` isn't used in any field as an attribute, it's free. I think [the current way we allow people to use custom external field types](https://backpackforlaravel.com/docs/4.1/crud-fields#creating-a-custom-field-type-1) is a bit...
In https://github.com/Laravel-Backpack/CRUD/pull/3572/files we realised we might not actually _need_ to overwrite any/all of those methods. So let's analyse how many we can get rid of.
The [`config/crud.php`](https://github.com/Laravel-Backpack/CRUD/blob/v5/src/config/backpack/crud.php) file seems to be needlessly long, because we echo out each language with its display name (in that language). But apparently... we don't need to do that... [PHP...