Skip to content

Commit

Permalink
[5.x] Fix Filament with other Stacks (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher authored Oct 27, 2023
1 parent 4916e64 commit 482c54e
Show file tree
Hide file tree
Showing 20 changed files with 160 additions and 586 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*.php diff=php

/.github export-ignore
/workbench export-ignore
/tests export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10",
"laravel/prompts": "^0.1.10",
"laravel/socialite": "^5.9",
"webmozart/assert": "^1.11"
Expand All @@ -28,6 +29,7 @@
"laravel/breeze": "^1.25",
"laravel/jetstream": "^4.0",
"laravel/sanctum": "^3.3",
"livewire/livewire": "^3",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.0",
Expand All @@ -53,7 +55,8 @@
"stubs/breeze/default/app/",
"stubs/breeze/inertia-common/app/",
"stubs/jetstream/app/",
"stubs/filament/app/"
"stubs/filament/app/",
"workbench/app/"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion resources/filament/views/components/input-error.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@props(['messages'])

@if ($messages)
<ul {{ $attributes->merge(['class' => 'text-sm text-red-600 dark:text-red-400 space-y-1']) }}>
<ul {{ $attributes->merge(['class' => 'text-sm text-danger-600 dark:text-danger-400 space-y-1']) }}>
@foreach ((array) $messages as $message)
<li>{{ $message }}</li>
@endforeach
Expand Down
181 changes: 0 additions & 181 deletions src/Actions/Auth/Breeze/Blade/AuthenticateOAuthCallback.php

This file was deleted.

29 changes: 0 additions & 29 deletions src/Actions/Auth/Breeze/HandleOAuthCallbackErrors.php

This file was deleted.

Loading

0 comments on commit 482c54e

Please sign in to comment.