@extends('Admin.Layout.main') @section('title', 'لیست سرمایه گذاران') @section('header', 'لیست سرمایه گذاران') @section('content')

تعداد کل سرمایه گذاران: {{ $investors->count() }} نفر

@if($investors->count()) @foreach ($investors as $row => $investor) @php $specification = $investor->specification;@endphp @endforeach
ردیف نام و نام خانوادگی شماره تلفن ایمیل نوع طرح میزان سرمایه گذاری (ریال) توان تولیدی
1 {{ $investor->full_name }} {{ $investor->phone }} {{ $investor->email ?? "-" }} {{ "بر اساس " . $investor->plan->toPersianString() }} {{ $specification->investment ? number_format($specification->investment) : "-" }} {{ $specification->production ? $specification->production . "MW" : "-"}}
{{ $investors->links() }} @else {!! emptyState('هیچ سرمایه گذاری توی سیستم ثبت نشده!') !!} @endif
@endsection