@extends('admin.layouts.master') @section('title') Course Goal Report | @endsection @section('content')

Course Goal Report List

{{-- --}}
@if (session('success'))
{{ session('success') }}
@endif {{-- @php $index = 0; @endphp --}} {{-- @forelse ($courseGoalManages[$index]->courseManages as $courseManage) @empty @endforelse --}}
# Id Course name Course goal Status Running Students Total Students
{{ $courseManage->id }} {{ $courseManage->is_paid == 1 ? 'Paid' : 'Free' }} {{ $courseManage->title }} {{ count($courseManage->courseStudents) }} {{ $courseManage->courseStudents->sum('price') }}
No data found
@endsection