Skip to content

Tag: php

Fetching A Patron Data From Patreon API

I’m developing a webpage with Laravel 8 and I have issues with fetching a patron details by id from Patreon API. Here is my use case. I’ve added “Login with Patreon” option to my webpage, and it works well. When someone login with Patreon successfully, I store her/his Patreon id and set reme…

Using multi where queries Laravel relationships

I have two tables (Table1, Table2). I want to print the sum of the records whose properties match Table1 in Table2 while listing the Table1 table. My two tables contain very large records, performance is important to me. I’m adding the sample database pictures: Thank you. Answer First, add below use sta…

Laravel online status

I have made custom middleware to track user online status but it has an issue, I can see my own online status but I always see other users as offline while they are not. Code Middleware class …