我在Laravel中的查询有一些小问题。我在project / app / file.php中有该文件,并且在文件中我有以下内容:
class Trip extends Model implements TranslatableInterface
{
use Translatable;
use Concerns\HasMeta;
use Concerns\HasActionLinks;
protected $guarded = [
'id'
];
const EDIT_PATH = 'extranet/trips';
/**
*
* @var string
*/
protected $table = 'trips';
protected static $translatable = [];
/**
*
* @param mixed $query
* @param array $filters
* @return void
*/
}
如何查询此protected $table = 'trips';
?
刀片示例:
@foreach($trips as $k => $trip)
<div class="list-group-item planner">
@include('components.scratchpad_trip')
</div>
@endforeach
编辑:
最后我找到了控制器。 在标题为“阿姆斯特丹”的地方要写什么?
$trips = $this->getTrips();
$results = $this->getCombinations();