Karan Datwani

Results 54 comments of Karan Datwani

Hi @pxpm I rechecked, both used to do the same thing with no differences. So I think you can merge.

Hey @pxpm I tested fields of [uploaders-test-branch](https://github.com/Laravel-Backpack/demo/tree/). I'm facing many issues with it: - [x] **1) Base64 Image** `CRUD::field('image')->type('image');` results✔️(fixed in demo branch): ![image](https://github.com/Laravel-Backpack/CRUD/assets/8214221/0d7ff0bb-6363-4c37-b1cf-15f40ea55aad) - [ ] **2) Dropezone** not...

Hey @pxpm, I'm facing the same issues even with a fresh installation. PLUS, I found one more bug: - [ ] Using an upload field with `['disk'=>'public', 'path'=>'destination']` attributes appends...

Hey @pxpm The above bugs are fixed✅. Now I started testing subfields under `repeatable` and there is an issue: - Suppose we created two rows and saved them. Go to...

Hey @pxpm New Issue: Create new, edit, and save without changes(validation error even when the file is already attached): ![Screenshot 2024-04-18 at 2 47 54 PM](https://github.com/Laravel-Backpack/CRUD/assets/8214221/e9d89aea-725c-41e0-b495-1282234438af)

Hi @jorgetwgroup Following the above instructions I'm unable to reproduce this error. Neither I found anything in `src` related to `colspan` Please have a look and let me know what...

Hey @dmarcos89 I'm using the following code in my project to handle it: ```php //PaymentCrudController CRUD::column('booking_travel_datetime') ->type('select') ->entity('booking') ->model(\App\Models\Booking::class) ->label('Travel DateTime') ->attribute('booking_travel_datetime') ->orderable(true) ->orderLogic(function ($query, $column, $columnDirection) { return $query->leftJoin('bookings',...

Oh! I never saw that comment. Can we keep this issue open in the docs? - It's dedicated to the Docs repo. - Works well as a reminder & a...

Here: https://github.com/Laravel-Backpack/docs/blob/eb9f774a663a56224ccfd33d86478ea526d80933/6.x/installation.md?plain=1#L76

Yes, you need to use the fetch operation. It's documented [here](https://backpackforlaravel.com/docs/6.x/crud-fields#load-entries-from-ajax-calls-using-the-fetch-operation-1) under the `relationship` field. Hope this would get you through. Please remember to close the issue. For more queries,...