laravel-grid icon indicating copy to clipboard operation
laravel-grid copied to clipboard

A grid view for laravel, inspired by the yii2 grid widget

Results 46 laravel-grid issues
Sort by recently updated
recently updated
newest added

In class `ModalRenderer`, you pass $modal to start method, and not end. However, it could be usefull in end method too. ``` public function end() { return view('leantony::modal.modal-partial-end'); } ```...

I'm try used grid with grid.js, when i'm click 'delete' button ajax try send request in my controller ``` class WebController extends Controller { public function destroy(Request $request) { echo...

Here is a fix to be able to use route parameters : ``` # This patch file was generated by NetBeans IDE # It uses platform neutral UTF-8 encoding and...

When clicking a row button, it also triggers the clickableRow callback :(

Would be great to externalize the modal JS from the grid js. For example, on a comments grid, we may want to add a row button "Reject", with a modal...

The idea is to make the title fully customizable. Concerned view : `modal-partial-start` For example : ``` {{ ($modal['title']??false) ? $modal['title'] : ucwords($modal['action'] . ' '. class_basename($modal['model'])) }} ```

Actually, create button position is 1, and refresh button position is 2. It means that if we want to add a button between those two, we have edit refresh position....

Is it possible to implement bulk actions? I want to delete multiple rows. I need checkboxes in front of every row and delete selected rows. How could I implement this?...

Hi! is there any way to attach an id to the default route? my route is: ```php Route::get('{id}/details', 'Campaigns\SimpleCampaignController@details')->name('campaign.simple.details'); ``` it generates something like this: ``` /campaigns/simple/32/details ``` the grid...

enhancement

For the column : ``` "status" => [ "label" => 'Status', "filter" => [ "enabled" => true, 'type' => 'select', 'data' => ['0'=>'Pending', '1' =>'Processing'] ] ``` The display in...