从带有Laravel和Eloquent的表格中选择所有内容
我正在使用Laravel 4来设置我的第一个模型,以从名为.posts
在标准MySQL中,我会使用:
SELECT * FROM posts;
如何在我的Laravel 4模型中实现这一点?
有关我的完整模型源代码,请参阅下文:
<?php
class Blog extends Eloquent
{
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'posts';
public function getAllPosts()
{
}
}