i have two table with the following details:
Ecourse table
- id
- slug
- title
- logo
- description
- price
- status
Traffics table
- id
- ecourse_id
- date
- amount
- type_traffic
I want to display ecourse data with the amount of traffic per day using eloquent laravel. What's the solution?
Thank you