This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Rules; | |
| use Closure; | |
| use Illuminate\Contracts\Validation\ValidationRule; | |
| use Illuminate\Support\Facades\DB; | |
| use Illuminate\Translation\PotentiallyTranslatedString; | |
| class UniqueTranslation implements ValidationRule |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Filament\Actions; | |
| use Spatie\MediaLibrary\MediaCollections\Models\Media; | |
| use Closure; | |
| use Filament\Forms; | |
| use Filament\Notifications\Notification; | |
| use Illuminate\Support\HtmlString; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Providers\Filament; | |
| use Filament\Panel; | |
| use Filament\View\PanelsRenderHook; | |
| use Illuminate\Support\Facades\Blade; | |
| public function panel(Panel $panel): Panel | |
| { |