标签: php html laravel-5.1 blade
我正在尝试做一个简单的分页。
它在localhost上运行良好,但在线托管时,出现以下错误:
ErrorException in Macroable.php line 81: Method render does not exist.
在我的控制器中我有:
$post=Post::paginate(5);
在我看来我正在打电话
{!! $post->render() !!}
但是,当从视图中移除{!! $post->render() !!}时,它将在线显示。