Fix payment form validation, styling and blog header visibility

This commit is contained in:
Muhammet Güler
2026-02-13 12:45:17 +03:00
parent bda19b4b0f
commit 0fa8e4e435
12 changed files with 638 additions and 15 deletions
-7
View File
@@ -11,13 +11,6 @@ use Illuminate\Auth\Access\HandlesAuthorization;
class PagePolicy
{
use HandlesAuthorization;
public function before(AuthUser $user, $ability)
{
if ($user->hasRole('super_admin')) {
return true;
}
}
public function viewAny(AuthUser $authUser): bool
{