@extends('layouts.app') @section('title', 'Portfolio List') @section('content')
@forelse($tble_list as $tb_row) @empty @endforelse
Sl No Portfolio Id Client Id Lender Id Portfolio Type Service Type Client PF Import Type Status No of Loans Action
{{$i++}} {{ $tb_row->portfolio_id }}   {{ isset($tb_row->getClient) ?$tb_row->getClient['client_name']: " " }} {{ isset($tb_row->getLender) ?$tb_row->getLender['lender_name']: " " }} {{ isset($tb_row->getPortfolioType) ?$tb_row->getPortfolioType['portfolio_type_name']: " " }} {{ isset($tb_row->getServiceType) ?$tb_row->getServiceType['service_type_name']: " " }} {{ $tb_row->client_pf_name }} {{ isset($tb_row->getImportType) ?$tb_row->getImportType['import_type_name']: " " }} @if($tb_row->is_active==1) Active @else Inactive @endif {{ $tb_row->success_import_cnt }}
@endsection @section('script') @endsection