dongyun8075 2016-07-27 06:50 采纳率: 100%
浏览 27
已采纳

在创建Paginator实例时将原始选择语句传递给laravel Eloquent

Pagination in Laravel is super easy. I simply go:

$posts = Post::where( .... );
$posts->paginate(20, ['ID', 'title', 'body'], ....);

I am trying to replace the ID,title,body array with: ID, title, LEFT(body, 200) But Laravel doesn't accept that! I found out that I should use this instead:

connection()->raw('ID, title, LEFT(body, 200) AS body');

For this to work, but the paginate method only accepts an array. Is there a way around it?

  • 写回答

1条回答 默认 最新

  • douhao2548 2016-07-27 06:59
    关注

    Do this:

    $posts = Post::where( .... );
    $posts->paginate(20, ['ID', 'title', \DB::raw('LEFT(body, 200) AS body')], ....);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部