當我嘗試使用自定義域這樣 <?php
abstract class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* The base URL to use while testing the application.
*
* @var string
*/
protected $baseUrl = 'h
不知道爲什麼它現在爲我工作。 我有兩個表 events
- id
selections
- id
- event_id
從我Event模式,我想選擇的關係 class Event extends Model
{
...
public function selections()
{
return $this->belongsTo(Select