I am using Laravel 8. I have 3 tables users, campaigns and payments
User has many Campaigns and Campaign has many payments table Payments has campaign_id and table campaigns has user_id
I want to fetch auth user payment details but table payments does not consist user_id but campaign_id.
How do I get these details?