@php $sections = DB::table('sections') ->where('course_id', $id) ->orderBy('sort') ->get(); @endphp
@foreach ($sections as $key => $section)
{{ $section->title }}
@endforeach