@extends('layouts.admin') @section('css') @endsection @section('content') All Plans Add Plan @include('components.admin.error-message') @if(!empty($plans)) @foreach($plans as $plan) {{$plan->name}} $ {{$plan->min_price}} Max Price: {{number_format($plan->max_price,2,'.',',')}} Intervals: {{$plan->intervals}} ROI: {{$plan->percs}}% Duration {{$plan->duration}} {{$plan->duration_time}} Edit Delete Edit Plan Information @csrf Name Min Price Max Price Plan Type {{$plan->type}} Main Promo Interval {{$plan->intervals}} Hourly Daily Weekly Bi-weekly Monthly Yearly Percentage Duration Duration Time {{$plan->duration_time}} hour day week month year Submit Cancel @endforeach @endif Add Plan @csrf Name Min Price Max Price Plan Type Main Promo Interval Hourly Daily Weekly Bi-weekly Monthly Yearly Percentage Duration Duration Time hour day week month year Submit Cancel @endsection @section('script') @endsection