Неопределенная переменная: user laravel

Я продолжаю получать эту ошибку, когда я пытаюсь войти в страницу загрузки.

Может ли кто-нибудь помочь?

Я уже сделал компактную часть, чтобы убедиться, что переменная передается в представление, а также мой маршрут должен быть в порядке, я думаю.

Я пытался использовать dd, но все, что он делает, продолжает показывать мне ошибку

Ошибка: неопределенная переменная: user (Вид: C: \ xampp \ htdocs \ Evaluation \ resources \ views \ upload.blade.php)

Вот мои коды:

upload.blade.php

<form class="form-horizontal" method="post" action="{{ url('/userUpload')}}" enctype="multipart/form-data"> {{ csrf_field() }} <input type="hidden" name="user_id" value="{{$user->id}}"> <div class="form-group"> <label for="imageInput" class="control-label col-sm-3">Upload Image</label> <div class="col-sm-9"> <input type="file" name="file"> </div> </div> <div class="form-group"> <div class="col-md-6-offset-2"> <input type="submit" class="btn btn-primary" value="Save"> </div> </div> </form> 

UploadController:

 public function upload(){ return view('upload'); } public function store(Request $request,$id){ $this->validate($request, [ 'file' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048', ]); var_dump('has file '.$request->hasFile('file')); if ($request->hasFile('file')) { $image = $request->file('file'); $name = $image->getClientOriginalName(); $size = $image->getClientSize(); $id = $request->user_id; $destinationPath = public_path('/images'); $image->move($destinationPath, $name); $Image = new Image; $Image->name = $name; $Image->size = $size; // $Image->user_id = $id; //$Image->save(); $user->find($id); dd($user); $user->Images()->save($Image); } return redirect('/home'); } public function test(){ $user = user_information::where('id')->get(); return view('upload', compact('user')); } 

Маршрут: (это мой маршрут)

 Route::get('/UploadUser/upload','UploadController@upload'); Route::post('/UploadUser','UploadController@store'); Route::post('/UploadUser/upload', 'UploadController@test'); 

Другой вопрос: я продолжаю получать эту ошибку, когда пытаюсь загрузить файл, так что мне делать?

Вот ошибка:

SQLSTATE [23000]: нарушение ограничений целостности: 1452 Невозможно добавить или обновить дочернюю строку: ограничение внешнего ключа завершается с ошибкой ( form . Images, CONSTRAINT images_user_id_foreign FOREIGN KEY ( user_id ) ССЫЛКИ usere_information ( id )) (SQL: вставка в images ( name , size , user_id , updated_at , created_at ) значения (download.png, 4247, 1, 2017-10-25 08:54:57, 2017-10-25 08:54:57))

Модель изображения:

 class Image extends Model { protected $fillable = array('name','size','user_id'); public function user_informations() { return $this->belongsTo('App\user_information', 'user_id', 'id'); } } 

Таблица изображений:

  Schema::create('images', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->string('size'); $table->integer('user_id')->unsigned(); $table->foreign('user_id')->references('id')->on('user_informations'); $table->timestamps(); }); 

Таблица пользовательских данных:

  Schema::create('user_informations', function (Blueprint $table) { $table->increments('id'); $table->engine = 'InnoDB'; $table->binary('signature'); $table->String('Name'); $table->timestamps(); }); 

Модель пользовательской информации:

 class user_information extends Eloquent { protected $fillable = array('signature', 'Name'); protected $table = 'user_informations'; protected $primaryKey = 'id'; public function Images() { return $this->hasOne('App\Image','user_id'); } } 

введите описание изображения здесь

Как получить изображение? Вот папка вида:

 @foreach ($data as $object) <b>Name: </b>{{ $object->Name }}<br><br> <a href="{{ url('/user/show/'.$object->id.'/edit') }}">Edit</a><br> @foreach ($data3 as $currentUser) <img src="{{ asset('public/images/' . $currentUser->Image->name ) }}"> @endforeach @if($data3->count()) @foreach($data3 as $currentUser) <a href="{!! route('user.upload.image', ['id'=>$currentUser->user_id]) !!}"> <button class="btn btn-primary"><i class ="fa fa-plus"></i>Upload Images</button> </a> @endforeach @else <a href="{!! route('user.upload.image', ['id'=>$object->id]) !!}"> <button class="btn btn-primary"><i class ="fa fa-plus"></i>Upload Images</button> @endif @endforeach 

HomeController:

  public function getInfo($id) { $data = user_information::where('id',$id)->get(); $data3=Image::where('user_id',$id)->get(); return view('test',compact('data','data3')); 

Related of "Неопределенная переменная: user laravel"