Chore: Upgrade to Laravel 12 + remove Mary and Jetstream dependencies (#141)

* docs: remove requirement for setting APP_KEY manually

* optimize date picker

* clean up modals

* spot light working

* reorganization

* add lazy load

* wip

* remove filament

* styling
This commit is contained in:
hackerESQ
2025-09-26 17:41:28 -05:00
committed by GitHub
parent 910d426ad4
commit e6f38d9481
146 changed files with 5443 additions and 3909 deletions
+3 -4
View File
@@ -7,7 +7,6 @@ namespace Tests;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Hash;
use Laravel\Jetstream\Http\Livewire\UpdatePasswordForm;
use Livewire\Livewire;
class UpdatePasswordTest extends TestCase
@@ -18,7 +17,7 @@ class UpdatePasswordTest extends TestCase
{
$this->actingAs($user = User::factory()->create());
Livewire::test(UpdatePasswordForm::class)
Livewire::test('update-password-form')
->set('state', [
'current_password' => 'password',
'password' => 'new-password',
@@ -33,7 +32,7 @@ class UpdatePasswordTest extends TestCase
{
$this->actingAs($user = User::factory()->create());
Livewire::test(UpdatePasswordForm::class)
Livewire::test('update-password-form')
->set('state', [
'current_password' => 'wrong-password',
'password' => 'new-password',
@@ -49,7 +48,7 @@ class UpdatePasswordTest extends TestCase
{
$this->actingAs($user = User::factory()->create());
Livewire::test(UpdatePasswordForm::class)
Livewire::test('update-password-form')
->set('state', [
'current_password' => 'password',
'password' => 'new-password',