rapyd-laravel
rapyd-laravel copied to clipboard
Remove Add link from DataGrid
Would like to remove add link from datagrid as i just wanted to display the data on grid. Can anyone show me how to achieve this ?
i have a rapid solution
add in zofe\rapyd\views\toolbar.blade.php file at botton
find in line 40
@else
@endif
and replace with
@else
<div class="btn-toolbar"
role="toolbar">
<div class="pull-left"> </div>
<div
class="pull-right"> `
@endif
simply , but effective
as you can see from source, using "custom" view should be simple: https://github.com/zofe/rapyd-laravel/blob/master/src/DataGrid/DataGrid.php#L43
you must use method "build" passing a custom view path: $grid->build("my.custom.datagrid_path");
@luiscastror9 it's not correct to edit "vendor" files, you should copy the view from https://github.com/zofe/rapyd-laravel/blob/master/views/datagrid.blade.php in your applications view path then edit what you need
no problem.. thanks