這是我的路線Laravel產量不工作
Route::get('/', '[email protected]');
這是我的應用程序頁面佈局
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dateneingabe</title>
<link rel="stylesheet" href="/css/app.css">
<script src="{{asset('/js/jquery-3.2.1.min.js')}}"></script>
</head>
<body>
@yield('contentSpiel')
@yield('A')
</body>
</html>
現在,這裏是我的@yield( 'contentSpiel')
@extends('app')
@section('contentSpiel')
<div class="form-group">
<label for="">Spiele</label>
<select class="form-control input-sm" name="spiele" id="spiele">
@foreach($alleSpiele as $alleSpieleOutput)
<option value="{!! $alleSpieleOutput->heimmannschaft !!}">{{$alleSpieleOutput->heimmannschaft}}</option>
@endforeach
</select>
</div>
<script>
$('#spiele').on('change', function(e){
console.log(e);
var spielID = e.target.value;
//ajax
$.get('/spieler-table?spielID=' + spielID, function(data){
//success data
console.log(data);
});
});
</script>
@endsection
這裏是我的部分A
@extends('app')
@section('A')
<h2>asd</h2>
@endsection
我不明白爲什麼我只在我的瀏覽器中獲得@yield('contentSpiel')部分。我必須改變@yields在我的瀏覽器中?
你爲什麼要擴展應用程序兩次?你是在控制器中結合兩個視圖還是什麼? – Ohgodwhy