私はlaravel 4.2の新機能Webアプリケーションを開発中です。プロフィールの画像をデータベースに保存したいと思います。laravel 4.2 profilce画像の保存/アップロードとデータベースからの検索
これは私のコントローラファイルのコードである
public function profilepicture(){
$data = Input::hasfile('file');
DB::table('company')->insert(array('data'=>$data));
return Redirect::to('/companyreg');
}
これは
Route::any('/company_profile','[email protected]');
ルートファイルから、これはフォームビュー
<form method="post" action="{{url('/company_profile')}}">
<input type="file" name="file" />
<input type="submit" name="submitfile" value="upload" />
</form>
あなたの問題は何ですか? – TheFallen