@extends('layouts/microfin_layout') @section('title', '| Add Regular Loan') @section('content') @php $jagProductIds = DB::table('mfn_loans_product')->where('productCategoryId', 1)->pluck('id')->toArray(); $argProductIds = DB::table('mfn_loans_product')->where('productCategoryId', 2)->pluck('id')->toArray(); $bunProductIds = DB::table('mfn_loans_product')->where('productCategoryId', 3)->pluck('id')->toArray(); $sufProductIds = DB::table('mfn_loans_product')->where('productCategoryId', 4)->pluck('id')->toArray(); $griProductIds = DB::table('mfn_loans_product')->where('productCategoryId', 5)->pluck('id')->toArray(); $washProductIds = DB::table('mfn_loans_product')->whereIn('productCategoryId', [15, 16])->pluck('id')->toArray(); $sahosProductIds= DB::table('mfn_loans_product')->where('productCategoryId', 7)->pluck('id')->toArray(); @endphp
--}}