Skip to content

Commit

Permalink
- fixes and bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilpiech97 committed Apr 18, 2024
1 parent 48f8bed commit 0e20dce
Show file tree
Hide file tree
Showing 6 changed files with 770 additions and 529 deletions.
2 changes: 2 additions & 0 deletions app/Http/Middleware/AdminPanelDefaultLanguage.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Blumilk\Website\Http\Middleware;

use Closure;
Expand Down
3 changes: 2 additions & 1 deletion app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ class User extends Authenticatable implements FilamentUser
"password" => "hashed",
];

#[\Override] public function canAccessPanel(Panel $panel): bool
#[\Override]
public function canAccessPanel(Panel $panel): bool
{
return true;
}
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"fakerphp/faker": "^1.23",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.1",
"nunomaduro/larastan": "^2.9",
"phpunit/phpunit": "^10.5",
"larastan/larastan": "^v2.9.5",
"phpunit/phpunit": "^11.1.2",
"spatie/laravel-ignition": "^2.4"
},
"autoload": {
Expand Down
Loading

0 comments on commit 0e20dce

Please sign in to comment.