web-dev-qa-db-fra.com

Laravel 8 Jetstream Profile-Photos pas afficher

Laravel 8 et Jetstream, est-ce vraiment nouveau?

Je viens d'essayer d'installer et de le jouer à fortifier mais je ne peux pas vraiment comprendre pourquoi ma photo de profil n'apparaît pas une image.

mise à jour-profil-information-forme

<!-- Current Profile Photo -->
<div class="mt-2" x-show="! photoPreview">
<img src="{{ $this->user->profile_photo_url }}"
          alt="{{ $this->user->name }}"
          class="rounded-full h-20 w-20 object-cover">
</div>

. Env

APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:6IJbdi+QYczKeLT7yOw3OgPsHucXn1KxVUb27hTQKpU=
APP_DEBUG=true
APP_URL=http://127.0.0.1:8000

Config/FileSystems

'public' => [
            'driver' => 'local',
            'root' => storage_path('/public/storage'),
            'url' => env('APP_URL').'/public/storage/',
            'visibility' => 'public',
        ],
3
Khandoker Hirok
   'public' => [
        'driver' => 'local',
        'root' => storage_path('app/public'),
        'url' => '/storage',
        'visibility' => 'public',
    ],

Hik Hik

0
EM POV

Faites votre votre .env app_url est correct et assurez-vous d'exécuter PHP Artisan Stockage: Link. https://github.com/laravel/framework/issues/34319#issuecomment-691677346

0
user2511140

Dans config/app.php l'app_url peut avoir besoin d'un port comme:

'URL' => env (app_url ',' http: // localhost: 8080 '),

0
user14559664