Skip to content

Commit cf4bb0d

Browse files
author
Marc Geurts
committed
Upgraded LIVEWIRE 4 and FILAMENT 5
1 parent 240f277 commit cf4bb0d

File tree

17 files changed

+280
-158
lines changed

17 files changed

+280
-158
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This <b>TallStack</b> application is build using :
2929
<li><a href="https://alpinejs.dev/" target="_blank">Alpine.js</a> 3</li>
3030
<li><a href="https://tailwindcss.com/" target="_blank">Tailwind CSS</a> 4</li>
3131
<li><a href="https://tallstackui.com//" target="_blank">TallStackUI</a> 2 (featuring <a href="https://tabler.io/icons" target="_blank">Tabler Icons</a>)</li>
32-
<li><a href="https://filamentphp.com//" target="_blank">Laravel Filament</a> 4 (only <a href="https://filamentphp.com/docs/4.x/tables/overview/" target="_blank">Table Builder</a>)</li>
32+
<li><a href="https://filamentphp.com//" target="_blank">Laravel Filament</a> 5 (only <a href="https://filamentphp.com/docs/5.x/tables/overview" target="_blank">Table Builder</a>)</li>
3333
</ul>
3434

3535
<img src="https://genealogy.kreaweb.be/img/logo/tallstack.webp" class="rounded" alt="tall-stack"/>
@@ -408,9 +408,9 @@ Visit the <a href="https://genealogy.kreaweb.be/help" target="_blank">demo proje
408408

409409
Maintaining this project takes time and effort. If you find it useful, consider supporting me:
410410

411-
- [![Star on GitHub](https://img.shields.io/github/stars/MGeurts/genealogy?style=social)](https://github.com/MGeurts/genealogy)
412-
- [![Donate via PayPal](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.me/MGeurtsKREAWEB)
413-
- [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-orange?logo=buy-me-a-coffee)](https://buymeacoffee.com/MGeurts)
411+
- [![Star on GitHub](https://img.shields.io/github/stars/MGeurts/genealogy?style=social)](https://github.com/MGeurts/genealogy)
412+
- [![Donate via PayPal](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.me/MGeurtsKREAWEB)
413+
- [![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-orange?logo=buy-me-a-coffee)](https://buymeacoffee.com/MGeurts)
414414

415415
> Your support helps me improve and maintain [Genealogy](https://github.com/MGeurts/genealogy) and other open-source tools. Every bit is appreciated. Thank you! 🙏
416416

app/Livewire/Backups/Manage.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ public function create(): void
9494
if ($exitCode === 0) {
9595
Log::info("Backup (Manually) -- Backup started \r\n" . $output);
9696

97-
$this->toast()->success(__('backup.backup'), __('backup.created'))->flash()->send();
97+
$this->toast()->success(__('backup.backup'), __('backup.created'))->send();
9898
} else {
9999
Log::error("Backup (Manually) -- Backup failed \r\n" . $output);
100100

101-
$this->toast()->error(__('backup.backup'), __('backup.failed'))->flash()->send();
101+
$this->toast()->error(__('backup.backup'), __('backup.failed'))->send();
102102
}
103103

104104
$this->redirect('/developer/backups');
@@ -127,9 +127,9 @@ public function delete(string $backup_to_delete): void
127127
if ($disk->exists(config('backup.backup.name') . '/' . $backup_to_delete)) {
128128
$disk->delete(config('backup.backup.name') . '/' . $backup_to_delete);
129129

130-
$this->toast()->success(__('backup.backup'), e($backup_to_delete) . ' ' . __('backup.deleted'))->expandable(false)->flash()->send();
130+
$this->toast()->success(__('backup.backup'), e($backup_to_delete) . ' ' . __('backup.deleted'))->expandable(false)->send();
131131
} else {
132-
$this->toast()->error(__('backup.backup'), __('backup.not_found'))->flash()->send();
132+
$this->toast()->error(__('backup.backup'), __('backup.not_found'))->send();
133133
}
134134

135135
$this->redirect('/developer/backups');

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@
3434
],
3535
"require": {
3636
"php": "^8.4",
37-
"filament/tables": "^4.5",
37+
"filament/tables": "~5.0",
3838
"intervention/image": "^3.11",
3939
"korridor/laravel-has-many-merged": "^1.2",
4040
"laravel/framework": "^12.47",
4141
"laravel/jetstream": "^5.4",
4242
"laravel/sanctum": "^4.2",
4343
"laravel/tinker": "^2.11",
44-
"livewire/livewire": "^3.7",
44+
"livewire/livewire": "~4.0",
4545
"opcodesio/log-viewer": "^3.21",
4646
"secondnetwork/blade-tabler-icons": "^3.36",
4747
"spatie/laravel-activitylog": "^4.10",
4848
"spatie/laravel-backup": "^9.3",
4949
"spatie/laravel-medialibrary": "^11.17",
5050
"stefangabos/world_countries": "^3.3",
5151
"stevebauman/location": "^7.6",
52-
"tallstackui/tallstackui": "^2.14"
52+
"tallstackui/tallstackui": "^2.15"
5353
},
5454
"require-dev": {
5555
"alisalehi/laravel-lang-files-translator": "^1.0",

0 commit comments

Comments
 (0)