Support the ongoing development of Laravel.io →
Database Eloquent Forms
Last updated 1 year ago.
0

why no one help me :( please help me

0

show us whats getting stored please

0

Hi,

I hope the below code will help you..

        if ($file = Input::file('pic'))
          {
                $fileName        = $file->getClientOriginalName();
	        $extension       = $file->getClientOriginalExtension() ?: 'png';
		$folderName      = '/uploads/users/';
		$destinationPath = public_path() . $folderName;
		$safeName        = str_random(10).'.'.$extension;
		$file->move($destinationPath, $safeName);
                $user->pic   = $safeName;

            }
0

Sign in to participate in this thread!

Eventy

Your banner here too?

kambizr kambizr Joined 17 Feb 2016

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.