I have class schedule model, and course model in laravel. I am trying to get list of course schedule count, but when running foreach loop, I am getting the list of items, but i want to get the number of schedules for course
Here is my code in view blade.
@foreach ( $singledegreesection->classschedule as $schedule)
{{ $schedule->ccourse->course->course_title }}
@endforeach
I am getting the result as below
computer networks
cryptography and cyber security
embedded systems and iot
computer networks
I want to print the result as below
computer networks – 2
cryptography and cyber security – 1
embedded systems and iot – 1