@extends('layouts.admin') @section('content') @push('css') @endpush
@include('admin.invest.invest_closing_list_topbap')
Invest Closing List
@foreach ($invest_closing_list as $investment) {{-- --}} @endforeach
Sl. Package Name Member Name Profit Ratio(%) Term of Month Amount GA Name Start Date End Date Status Action
{{$loop->iteration}} {{ cn($investment, 'package.package_name', '') }} {{ cn($investment, 'member.name', '') }} ({{ cn($investment, 'member.user_id', '') }}) {{ $investment->profit_ratio }} {{ $investment->term_of_month }} {{ number_format($investment->amount) }}.00 {{ cn($investment, 'ga.name', '') }}({{ cn($investment, 'ga.user_id', '') }}) {{ \Carbon\Carbon::parse($investment->invest_start_date)->format('d-M-Y') }} @if($investment->invest_end_date < $today) {{ \Carbon\Carbon::parse($investment->invest_end_date)->format('d-M-Y') }} @else {{ \Carbon\Carbon::parse($investment->invest_end_date)->format('d-M-Y') }} @endif @if($investment->status == '1') Active @else Inactive @endif Approved @if($investment->closing_request == 0) Close Request @else Close request already send @endif Renew
@push('alljs') @endpush @endsection