@extends('layouts.buddy-screens') @section('content')
@if(session('success') == "Opps! You do not have access") @elseif(session()->has('success'))
× {{session('success')}}
@endif

Dashboard / Investment / Stock Market

@if (Session()->get('type') || Session()->get('productname') || Session()->get('partner') || Session()->get('from') || Session()->get('to') || Session()->get('aum'))
Product Filter :
@endif @if (Session()->get('type'))

Product Type : {{ucwords(str_replace('_', ' ', Session()->get('type')))}}

@endif @if (Session()->get('partner'))

Partner : {{ucwords(str_replace('_', ' ', Session()->get('partner')))}}

@endif @if (Session()->get('from') || Session()->get('to'))

Date : {{ucwords(Session()->get('from'))}} to {{ucwords(Session()->get('to'))}}

@endif @if (Session()->get('productname'))

Product Name : {{ucwords(Session()->get('productname'))}}

@endif @if (Session()->get('aum'))

Minimum Investement : {{ucfirst(str_replace('_', ' ', Session()->get('aum')))}}

@endif