Releases: Power-Components/livewire-powergrid
Releases · Power-Components/livewire-powergrid
v1.2.8
v1.2.7
- added can method in actions - when false, it will not be visible on the screen
public function actions(): array
{
$canDelete = false;
return [
Button::add('destroy')
->caption(__('Delete'))
->caption(__('Delete'))
**->can($canDelete)**
->class('bg-red-500 text-white')
->route('product.destroy', ['product' => 'id'])
->method('delete'),
//...
];
}
https://livewire-powergrid.docsforge.com/#action-and-header-methods
v1.2.6
- added can method in actions - when false, it will not be visible on the screen
public function actions(): array
{
$canDelete = false;
return [
Button::add('destroy')
->caption(__('Delete'))
->caption(__('Delete'))
**->can($canDelete)**
->class('bg-red-500 text-white')
->route('product.destroy', ['product' => 'id'])
->method('delete'),
//...
];
}
https://livewire-powergrid.docsforge.com/#action-and-header-methods
v1.2.5
v1.2.4
v1.2.3
v1.2.2
Layout correction
- Improvements to filter components
- Responsive layout (tailwind)
- DarkMode (tailwind) - see demo
Back-end fix
Display html on action - issues 38
News
- ToggleColumns allows to show/hide columns - setUp - showToggleColumns
- ThemeManager - Allows you to change a CSS behavior for a particular component class or globally - template
- Release Notification - when you run the powergrid:create command, we can let you know if you are using an older version - notification
- Method createFromFillable refactored for more databases support - pull 51
v1.1.7
- Fixed when not passed relationSearch method
v1.1.6
v1.1.5
- fix sort direction
- search with resetPage