@extends('backend.layouts.master') @section('title', 'Investments - Admin Panel') @section('admin-content') @section('styles') @endsection
@include('backend.layouts.partials.logout')

{{ __('Investments') }}

Add Investment

@foreach($investments as $key => $investment) @endforeach
# Investor Project Terms and Conditions Amount Invested Number Of Shares Share Price Transaction Date Documents Actions
{{ $key+1 }} {{ $investment->investor->name ?? "" }}
{{ $investment->investor->email ?? "" }}
{{ $investment->project->name ?? "" }} @if($investment->terms_accepted) ✅ Accepted @else ❌ Not Accepted @endif {{ $investment->amount_invested ?? "" }} {{ $investment->number_of_share ?? "" }} {{ $investment->share_price ?? "" }} {{ $investment->transaction_date ? \Carbon\Carbon::parse($investment->transaction_date)->format('d-m-Y') : '' }}
@if($investment->share_certificate_url) 📜 Certificate @else @endif @if($investment->term_condition_url) 📄 Terms @else @endif @if($investment->balance_sheet_url) 📊 Sheet @else @endif
Edit
@csrf @method('DELETE')
@endsection @section('scripts') @endsection