{!! Form::open(['role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'mfnMraProductMappingForm']) !!} @foreach ($loanProductCatagory as $catagory) @php $products = DB::table('mfn_loans_product') ->selectRaw('id, name, shortName, code') ->where('productCategoryId', $catagory->id) ->where('status', '1') ->where('softDel', '0') ->orderBy('code', 'asc') ->get(); if( $products->isEmpty() ) continue; @endphp