syntax error, unexpected ';', expecting ',' or ')' (View: /home/ec2-user/environment/cms/resources/views/books.blade.php)
resources/views/books.blade.php:45
となったので、ソースコードを確認したところ45行目が間違っているようには思えませんでした。
お力をお貸しください。
以下にbooks.blade.phpを貼って、45行目を太字にしておきます。
@extends('layouts.app')
@section('content')
@include('common.errors')
<!-- バリデーションエラーの表示に使用--> <!-- 本登録フォーム --> <form action="{{ url('books')}}" method="POST" class="formhorizontal"> {{csrf_field()}} <!--現在の本 --> @if(count($books)>0) <div class="card-body"> <div class="card-title"> 現在の本 </div> <div class="card-body"> <table class="table table-striped task-table"> <!--テーブルヘッダー--> <thead> <th>本一覧</th> <th> </th> </thead> <!--テーブル本体 --> <tbody> @foreach($books as $book) <tr> <!--本タイトル--> <td class="table-text"> <div>{{$book->item_name}}</div> </td></div> @endif <!-- Book: 既に登録されてる本のリスト --> <!-- 本のタイトル --> <div class="form-group"> <div class="col-sm-6"> <input type="text" name="item_name" class="form-control"> </div> </div> <!-- 本登録ボタン --> <div class="form-group"> <div class="col-sm-offset-3 col-sm-6"> <button type="submit" class="btn btn-primary"> Save </button> </div> </div> </form> </div><!--本:削除ボタン--> <td> **<form action="{{ url('book/'.$book->id }}" method="POST">** {{csrf_field()}} {{method_field('DELETE')}} <button type="submit" class="btn btn-danger"> 削除 </button> </form> </td> </tr> @endforeach </tbody> </table> </div>
@endsection
回答1件
あなたの回答
tips
プレビュー