@extends('investor.layout.app') @section('css') @php Session::forget('cart'); Session::forget('cart1'); @endphp @endsection @section('content')
    @forelse($files as $filedata) @php $extensions = (explode('.', $filedata->image)); $ext=end($extensions); @endphp
  • @if($ext=='ai' || $ext=='xlsx' || $ext=='csv') View @else View @endif
    @if($filedata->display_name!=''){{$filedata->display_name}} @else {{$filedata->image}}@endif Uploaded by: {{$filedata->username($filedata->usertype,$filedata->userid)}} Uploaded on: {{date('h:i a, d M Y',strtotime($filedata->created_at))}}
  • @empty

    {{__('investor.no_records')}}

    @endforelse
@endsection