Answers for "compare two table and get same id data in laravel"

PHP
0

comparison of two tables in laravel using model

$paidFeesIds = Fee::whereHas('paidFees', function($q) {
    $q->where('payment_status', 1);
})->pluck('id')->toArray();

$notPaidFeesIds = Fee::whereNotIn('id', $paidFeesIds)->pluck('id')->toArray();
Posted by: Guest on July-16-2020

Code answers related to "compare two table and get same id data in laravel"

Browse Popular Code Answers by Language