Image Upload
Hello
When I upload the image, I'm not able to get it to show in the column, how can I do that?
I have nullable in the database table
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('avatar')->nullable();
$table->integer('team_id')->nullable();
//$table->foreignIdFor(Team::class)->index();
$table->rememberToken();
$table->timestamps();
$table->softDeletes();
});
}
Solution:Jump to solution
check if the file actually uploaded to the storage folder
and run
php artisan storage:link...
12 Replies
did you added
avatar
to User Model?no but ok
lol. typical
It registered in the database but does not show in the column
open the dev tools and see what in the console, I think it related to the app_url in env
APP_URL=http://localhost:8000
what is the error in the dev tools console in the browse ?
Solution
check if the file actually uploaded to the storage folder
and run
php artisan storage:link
yes it worked, thank you very much