Skip to content

Commit 9160342

Browse files
authored
Development to Develop (rappasoft#1885)
* v3.4.11 (rappasoft#1878) ## [v3.4.11] - 2024-08-23 ### New Features - Add setIconLeft/setIconRight for Actions by @lrljoe in rappasoft#1877 * Adjust Action Button Icon Margin (rappasoft#1880) * Adjust Action Button Icon Margin * Adjust ChangeLog * Change Order of "Getting Started" section (rappasoft#1883) * Change Order of "Getting Started" section * Change to "UsersTable"
1 parent 7bddef4 commit 9160342

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-livewire-tables` will be documented in this file
44

5+
## [v3.4.12] - 2024-08-23
6+
### Tweaks
7+
- Adjust Action Button Margins by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1880
8+
59
## [v3.4.11] - 2024-08-23
610
### New Features
711
- Add setIconLeft/setIconRight for Actions by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1877

docs/start/commands.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
title: Commands
3-
weight: 6
3+
weight: 5
44
---
55

66
## Generating Datatable Components
77

88
To generate a new datatable component you can use the `make:datatable` command:
99

10-
Create a new datatable component called `UserTable` in `App\Livewire` that uses the `App\Models\User` model.
10+
Create a new datatable component called `UsersTable` in `App\Livewire` that uses the `App\Models\User` model.
1111

1212
```bash
13-
php artisan make:datatable UserTable User
13+
php artisan make:datatable UsersTable User
1414
```
1515

1616
### Custom Model Path

docs/start/rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Rendering
3-
weight: 5
3+
weight: 6
44
---
55

66
## Rendering Components

resources/views/includes/actions/button.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
@elseif($action->hasIcon() && !$action->getIconRight())
2525
<i {{ $action->getIconAttributes()
2626
->class(["ms-1 ". $action->getIcon() => $isBootstrap])
27-
->class(["ml-1 ". $action->getIcon() => $isTailwind])
27+
->class(["mr-1 ". $action->getIcon() => $isTailwind])
2828
->except('default-styling')
2929
}}
3030
></i>

0 commit comments

Comments
 (0)