前提・実現したいこと
ここに質問の内容を詳しく書いてください。
(例)PHP(Laravel)でカレンダーシステムを作っています。
カレンダー編集機能を実装中に/holidayにアクセスしようとしたら、以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
ErrorException (E_ERROR)
Undefined variable: data (View: /home/ec2-user/environment/mynews.1/resources/views/calendar/holiday.blade.php)
Previous exceptions
gyazoです→https://gyazo.com/54415c23c2fd1db15c0001efcab79614)
###ソースコード
@extends('layouts.holiday')
@section('title', '休日設定')
@section('content')
<h1>休日設定</h1>
<!-- 休日入力フォーム -->
<form method="POST" action="/holiday">
<div class="form-group">
{{csrf_field()}}
<label for="day">日付[YYYY/MM/DD] </label>
<input type="text" name="day" class="form-control" id="day" value="{{$data->day}}">
<label for="description">説明</label>
<input type="text" name="description" class="form-control" id="description" value="{{$data->description}}">
</div>
<button type="submit" class="btn btn-primary">登録</button>
<input type="hidden" name="id" value="{{$data->id}}">
</form>
<!-- 日付のリンクをつける -->
<th scope="row"><a href="{{ url('/holiday/'.$val->id) }}">{{$val->day}}</a></th>
<!-- 休日一覧表示 -->
<script>
$( function() {
$( "#day" ).datepicker({dateFormat: 'yy-mm-dd'});
} );
</script>
<table class="table">
<thead>
<tr>
<th scope="col">日付</th>
<th scope="col">説明</th>
<th scope="col">作成日</th>
<th scope="col">更新日</th>
</tr>
</thead>
<tbody>
@foreach($list as $val)
<tr>
<th scope="row">{{$val->day}}</th>
<td>{{$val->description}}</td>
<td>{{$val->created_at}}</td>
<td>{{$val->updated_at}}</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
github account
https://github.com/yuki3186/mynews.1
試したこと
調べたりしたが、解決法がわからなかった。
補足情報(FW/ツールのバージョンなど)
Laravel Framework 5.8.38
ここにより詳細な情報を記載してください。