@extends('layouts.frontendDashboard.master') @section('title', 'Buy Share Log') @section("body-start")
@endsection @section("content")
@if(!empty($investmentData)) @foreach($investmentData as $key => $investment) @endforeach @endif
# Project Dividend Buy Share Transaction Date
{{++$key}} @if(!empty($investment->getUser->email)){{ $investment->getUser->email}}@endif @if(!empty($investment->getProject->project_name)){{ $investment->getProject->project_name }}@endif {{ !empty($investment->dividend) ? number_format($investment->dividend, 2, '.', ',') : '' }} @if(!empty($investment->getProject->total_share)){{ $investment->getProject->total_share }}@endif {{ $investment->share }} @if($investment->investment_date !='') {{carbonFormatDate($investment->investment_date,'d-m-Y')}} @else {{carbonFormatDate($investment->created_at,'d-m-Y')}} @endif
@endsection @push('scripts') @endpush