@extends('layouts.frontendDashboard.master') @section('title', 'View Project') @push('styles') @endpush @section("body-start")
@endsection @section("content")
{{__('Back') }}
@if(in_array("project_name", $viewableColumns))

{{__('Project Name') }}: {{!empty($project->project_name) ? $project->project_name : '' }}

@endif @if(in_array("project_types_id", $viewableColumns))

{{__('Project Status') }}: {{!empty($project->status->name) ? $project->status->name : '' }}

@endif @if(in_array("share_price", $viewableColumns))

{{__('Current Shares Price') }}: {{!empty($project->share_price) ? $project->share_price : '' }}

@endif @if(in_array("total_share", $viewableColumns))

{{__('Total Shares') }}: {{!empty($project->total_share) ? $project->total_share : '' }}

@endif @if(in_array("description", $viewableColumns))

{{__('Project Description') }}: {!! !empty($project->description) ? $project->description : '' !!}

@endif @if(in_array("image", $viewableColumns)) @if($project->image)
{{__('Feature Image') }}:
@endif @endif
@foreach($investmentData as $item) @foreach($item['get_investor'] as $key => $users) @if(!empty($users['get_user'])) @endif @endforeach @endforeach
{{__('Id') }} {{__('First Name') }} {{__('Status') }} {{__('Created Date') }} {{__('Updated Date') }} {{__('Action') }}
{{ $users['get_user']['id'] }} {{ !empty($users['get_user']['name']) ? $users['get_user']['name'] : '' }} {{ !empty($users['get_user']['email']) ? $users['get_user']['email'] : '' }} @if(!empty($users['get_user']['is_active']) && $users['get_user']['is_active'] == 1) Active @elseif($users['get_user']['is_active'] == 0) Inactive @else Deleted @endif {{ date("d-m-Y", strtotime($users['created_at'])) }} {{ date("d-m-Y", strtotime($users['updated_at'])) }}
@endsection @push('scripts') @endpush