Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/Models/Reference.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function getPhotoPath(): string
}

return $this->sex === "female"
? asset("graphics/placeholders/female.svg")
: asset("graphics/placeholders/male.svg");
? asset("graphics/placeholders/female.webp")
: asset("graphics/placeholders/male.webp");
}
}
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
"ext-gd": "*",
"ext-intl": "*",
"ext-pdo": "*",
"codezero/laravel-localized-routes": "^4.0.1",
"codezero/laravel-unique-translation": "^4.3.1",
"filament/filament": "^3.3.7",
"filament/spatie-laravel-translatable-plugin": "^3.3.7",
"guzzlehttp/guzzle": "^7.9.3",
"intervention/image-laravel": "^1.5.5",
"josiasmontag/laravel-recaptchav3": "^1.0",
"laravel/framework": "^11.44.2",
"laravel/framework": "^12.17.0",
"laravel/sanctum": "^4.0.8",
"laravel/tinker": "^2.10.1",
"mvenghaus/filament-plugin-translatable-inline": "^3.0.8",
"nesbot/carbon": "^3.8.6",
"opgginc/codezero-laravel-localized-routes": "^5.1",
"sentry/sentry-laravel": "^4.13.0"
},
"require-dev": {
Expand All @@ -30,7 +30,7 @@
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.7.0",
"larastan/larastan": "^3.2.0",
"phpunit/phpunit": "^11.5.15",
"phpunit/phpunit": "^12.2.0",
"spatie/laravel-ignition": "^2.9.1"
},
"autoload": {
Expand Down
Loading