Advertisement
LrdArc

laravel eloquent with

Jun 7th, 2017
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.  
  3.         $columns = Section::with( [
  4.             'content' => function ( $query ) use ( $group ) {
  5.                 $query->where( 'group_id', $group->id )->orderBy( 'updated_at', 'desc' );
  6.             }
  7.  
  8.         ] )->find( $section->id );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement