Cristian Tăbăcitu
Cristian Tăbăcitu
### Discussed in https://github.com/Laravel-Backpack/CRUD/discussions/2667 Originally posted by **tabacitu** April 13, 2020 Instead of using DataTable's magic to export rows, we should create an Export operation. That way: - we could...
# Feature Request ### What's the feature you think Backpack should have? Every time you use a field type, it'd be awesome to know there's a corresponding column type... with...
# Feature Request ### What's the feature you think Backpack should have? Ability to define a `relationship` field for a `morphTo` relationship. Take the examples we've just added to the...
You _can_ save a Backpack admin panel to your iOS/Android home screen. To use it just like it were a native app. The problem is, when you do that now:...
By default in Laravel, when a user changes their password, they stay logged in. Not only in the current browser, but also in any other browsers / devices etc. Until...
## WHY ### BEFORE - What was wrong? What was happening before this PR? The ZIP that got downloaded by `composer install` was 40.3 MB. Details in https://github.com/Laravel-Backpack/ideas/issues/116 ### AFTER...
Fixes #2536 Makes the route generator check for these line contents, in this order, and places the route BEFORE that line: - ```// end of generated Backpack routes; DO NOT...
# 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...
Those fields use the HTML5-spec input[type=week] and input[type=month], which Firefox and Safari do not currently support ([week](https://caniuse.com/mdn-html_elements_input_type_week), [month](https://caniuse.com/mdn-html_elements_input_type_month)). We should either: (a) warn people in their docs about that (b)...
Merges #1348 Fixes #1202 Uses https://github.com/jackocnr/intl-tel-input Declaration: ``` [ 'name' => 'phone', 'type' => 'phone', 'label' => 'Phone Number (international)', ] ``` Merged #1348 and added a few features: -...