我有一個樣品視圖: 文件:hello.blade.php //includes the basic html enclosed tags
<p>Hello world<p>
@yield('content')
文件:tester.blade.php @extends('hello')
@section('content')
<p>this is a test<p>
@
我有一個模型未返回相關模型,Call和CallType是我的模型,具有一對一關係。 呼叫模型 public function calltype(){
return $this->hasOne('App\CallType');
}
CALLTYPE模型 public function call(){
return $this->belongsTo('App\Call');