@extends('layouts.admin') @section('content')

{{ $page_title }}

@foreach($plan as $p)

{{ $p->name }}

{{ $basic->currency }} {{ number_format($p->minimum) }} - {{ $basic->currency }} {{ number_format($p->maximum) }}
  • Running Percent - {{ $p->percent }}
  • Total Percent - {{ $p->total_percent }}
  • Time - {{ $p->time }} times
  • Compound - {{ $p->compound->name }}
  • {{ $p->status == 1 ? "Active" : 'DeActive' }}
{{-- Custom Link--}}
@endforeach
@endsection @section('scripts') @endsection