zofe / rapyd-laravel

deprecated rewritten in rapyd-livewire
MIT License
866 stars 298 forks source link

Alternative of glyphicon of Laravel 5.6 with bootstrap 4 #450

Open lautinghang opened 5 years ago

lautinghang commented 5 years ago

Any support on change icon set on all zofe rapyd layout?? Thanks a lot.

secelite commented 5 years ago

You should publish the assets and change the views files to your favor.

For using buttons instead of glyphicons, my resources/views/vendor/rapyd/datagrid/actions.blade.php file looks like this:

@if (in_array("show", $actions))
    <a class="btn btn-default btn-sm" title="@lang('rapyd::rapyd.show')" href="{!! $uri !!}?show={!! $id !!}">View</a>
@endif
@if (in_array("modify", $actions))
    <a class="btn btn-default btn-sm" title="@lang('rapyd::rapyd.modify')" href="{!! $uri !!}?modify={!! $id !!}">Modify</a>
@endif
@if (in_array("delete", $actions))
    <a class="btn btn-danger btn-sm" title="@lang('rapyd::rapyd.delete')" href="{!! $uri !!}?delete={!! $id !!}">Delete</a>
@endif