@extends('components.admin-layout') @section('content')

All Investment Plans

{{-- search will enter here --}}
Image
Name
Category
Description
Min Amount
Max Amount
Min Range (%)
Max Range (%)
Commission (%)
Duration (days)
Accrual Time
Created At
Action
@foreach ($plans as $plan)
{{ $plan->name }}
{{ $plan->cat_name }}
{{ \Illuminate\Support\Str::limit($plan->description, 70, $end = '...') }}
${{ $plan->min }}
${{ $plan->max }}
{{ number_format($plan->minRange, 2, '.', ',') }}
{{ number_format($plan->maxRange, 2, '.', ',') }}
{{ $plan->commission }}
{{ $plan->duration }}
{{ ucwords($plan->accrual) }}
{{ date('d M,Y', strtotime($plan->createdAt)) }}
{{-- modal --}}
@endforeach
@if ($plans->count() < 1) @endif
{{--
{{ $users->links() }}
--}}
{{ $plans->links() }}
@endsection