laravel,php
1 2フォームページ 3 4@extends('layout') 5 6@section('content') 7<div class="container"> 8 <div class="row justify-content-center"> 9 <div class="col-md-8"> 10 {{ Form::open(['url' => '/wishes', 'method' => 'post']) }} 11 @csrf 12 <div class="form-group row"> 13 {{ Form::label('title', '案件名') }} 14 {{ Form::text('title',$title, ['class' => 'form-control']) }} 15 @if($errors->has('title'))<br><span class="error" style='color:red;'>{{ $errors->first('title') }}</span> @endif 16 </div> 17 <div class="form-group row"> 18 {{ Form::label('body', '詳細') }} 19 {{ Form::textarea('body',$body, ['class' => 'form-control']) }} 20 @if($errors->has('body'))<br><span class="error" style='color:red;'>{{ $errors->first('body') }}</span> @endif 21 </div> 22 <div class="form-group row"> 23 {{ Form::label('image', '写真') }} 24 {{ Form::file('image', ['id' => 'image','class' => 'form-control' ,'accept' => 'image/png, image/jpeg ,image/jpg', 'enctype' => 'multipart/form-data']) }} 25 @if($errors->has('image'))<br><span class="error" style='color:red;'>{{ $errors->first('image') }}</span> @endif 26 </div> 27 <div class="form-group row"> 28 {{ Form::submit('送信', ['class' => 'btn']) }} 29 </div> 30 {{ Form::close() }} 31 </div> 32 </div> 33</div> 34@endsection 35 36画像保存処理 37 38public function store(WishStore $request) 39 { 40 $data = Wish::where('user_id', '=', auth()->id())->first(); 41 if (!isset($data)) { 42 $data = new Wish(); 43 } 44 45 $data->title = $request->title; 46 $data->body = $request->body; 47 $data->user_id = auth()->id(); 48 49 $upload_image = $request->file('image'); 50 51 if($upload_image) { 52 //アップロードされた画像を保存する 53 $path = $upload_image->store('uploads',"public"); 54 //画像の保存に成功したらDBに記録する 55 if($path){ 56 $data->file_name = $upload_image->getClientOriginalName(); 57 $data->file_path = $path; 58 } 59 } 60 61 $data->wish_at = date_format(Carbon::now() , 'Y-m-d'); 62 $data->save(); 63 64 $title = $data->title; 65 $body = $data->body; 66 return view('wishes.index',compact('title','body')); 67 } 68 69バリデーション 70 71class WishStore extends FormRequest 72{ 73 /** 74 * Determine if the user is authorized to make this request. 75 * 76 * @return bool 77 */ 78 // public function authorize() 79 // { 80 // return false; 81 // } 82 83 /** 84 * Get the validation rules that apply to the request. 85 * 86 * @return array 87 */ 88 public function rules() 89 { 90 return [ 91 'title' => 'required|max:20', 92 'body' => 'required|max:1000', 93 'user_id' => 'required|numeric', 94 'image' => 'required|file|image|mimes:png,jpeg,jpg' 95 ]; 96 } 97 98 public function messages() 99 { 100 return [ 101 'title.required' => '20文字以内で入力してください', 102 'title.max' => '20文字以内で入力してください', 103 'body.required' => '1000文字以内で入力してください', 104 'body.max' => '1000文字以内で入力してください', 105 'user_id.required' => 'ログインしてください', 106 'file.required' => '選択してください', 107 'image.file' => 'ファイルを用意してください', 108 'image.image' => '画像に限ります', 109 'image.mimes' => '画像ファイル形式は、png,jpeg,JPGに限ります', 110 ]; 111 } 112} 113 114 115本題に入ります。 116画像をフォームで選択して送信ぼたんをおすとファイル形式のものを選択しているにもかかわらず 117”ファイルを用意してください” 118というエラーが出ます。 119ちなみに、選択したもののファイル名は、.pngや.jpegで終わります。 120これはいったいどのようにすれば解決できるのでしょうか?
回答1件
あなたの回答
tips
プレビュー