0

私はlaravel 4.2が初めてで、Webアプリケーションを開発しています..今、プロフィール写真をデータベースに保存したいと思っています。

これは私のコントローラーファイルコードです

public function profilepicture(){


 $data = Input::hasfile('file');

 DB::table('company')->insert(array('data'=>$data));
 return Redirect::to('/companyreg');
}

これはルートファイルからのものです

Route::any('/company_profile','CompanyController@profilepicture');

これはフォームビューです

<form method="post"  action="{{url('/company_profile')}}">
<input type="file" name="file" />
<input type="submit" name="submitfile" value="upload" />
</form>
4

1 に答える 1