@extends('layouts.frontendDashboard.master') @section('title', 'Manage Ledgers') @section("body-start")
@endsection @section("content")
@php $downloadText = 'Archived Investment'; if(Request::get('status') != 'deleted') { $downloadText = 'Investment'; } @endphp
@csrf

Create / Edit investment

@if(in_array("project_id", $formViewableColumns))

@error('project_id')
{{ $message }}
@enderror
@endif @if(in_array("user_id", $formViewableColumns))

@error('user_id')
{{ $message }}
@enderror
@endif @if(in_array("investment_date", $formViewableColumns))

@error('investment_date')
{{ $message }}
@enderror
@endif
@if(in_array("share", $formViewableColumns))

@error('share')
{{ $message }}
@enderror
@endif

@error('')
{{ $message }}
@enderror
@if(in_array("narrative", $formViewableColumns))

@endif
@foreach ($viewableColumns as $column) @if($column['view_availability'] == 1) @php $setting = App\Models\SupportManagerSetting::where('table_name','investor_share_logs')->where('column_name', $column['column_name'])->first(); @endphp @if($column['column_name'] == 'status' || $column['column_name'] == 'type') @elseif($column['column_name'] == 'dividend') @elseif($column['column_name'] == 'investment_date') @else @endif @endif @endforeach
# {{ $setting->display_name }} {{ $setting->display_name }}{{ $setting->display_name }}{{ $setting->display_name }} Actions
@endsection @push('scripts') @endpush