79674811

Date: 2025-06-22 00:00:06
Score: 1
Natty:
Report link
$photos = DB::table('photos')->select('id', 'name', 'created_at');
$videos = DB::table('videos')->select('id', 'name', 'created_at');
$combined = $photos->union($videos)->tap(function($q){
    $q->orderBy('created_at', 'desc');
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Алешка Зёмин