@extends('layouts.admin_layout') @section('Title') پنل مدیریت | طرح های ارتقاء آگهی @endsection @section('custom-js') @endsection @section('content')

طرح های ارتقاء آگهی

@if(!empty($plans->all()))
@php $row = 1; @endphp @foreach($plans as $plan) @php $row++; @endphp @endforeach
# آیکون عنوان قیمت درصد تخفیف تعداد روز تعداد اجرا در روز بازه ی زمانی عملیات
{{$row}}

{{$plan['title']}} @if($plan['discount_percentage'] > 0) {{@number_format($plan['price'])}} {{@number_format($plan['price'] * (100 - $plan['discount_percentage']) / 100)}} @else {{@number_format($plan['price'])}} @endif % {{$plan['discount_percentage']}} {{$plan['duration']}} {{$plan['count_per_day']}} @if(intval($plan['interval']) == 0 or intval($plan['count_per_day']) === 1) @else {{$plan['interval']}} @endif
@else

موردی یافت نشد.

@endif
@endsection