Skip to content

Tag: php

Laravel get all parents of category

I have categories and subcategories in laravel namespace App; use IlluminateDatabaseEloquentModel; class Category extends Model { protected $table = ‘categories’; public function parent(…

Calculation between three different tables in databases?

I am a beginner in programming. There are three tables is in database: tblclients, tblinvoices, tblinvoicepaymentrecords. Now, I want to show Total Due in Client Area, right now there is only Percentage Graph showing. Here is the Flow: I added a client, it goes in tblclients with client id 1. I create invoice…