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' 'files' => true]) }} 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']) }} 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(); 41if (!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 51if($upload_image) { 52//アップロードされた画像を保存する 53$path = $upload_image->store('uploads',"public"); 54//画像の保存に成功したらDBに記録する 55if($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; 66return view('wishes.index',compact('title','body')); 67} 68 69上記コードでアップロードされた画像が保存されずまた、データベースに記録されません。 70解決法がわかる方教えてもらえると助かります
回答1件
あなたの回答
tips
プレビュー