@extends('layouts.app', ['title' => __('Pages')]) @section('content')

{{ __('Plans') }}

@include('partials.flash')
@if(count($plans))
@if (config('app.issd')) @else @endif @foreach ($plans as $plan) @if (config('app.issd')) @else @endif @endforeach
{{ __('Name') }} {{ __('Price') }} {{ __('Period') }}{{ __('Orders') }}{{ __('Ordering') }}
{{ $plan->name }} {{ $plan->price }} {{ $plan->period == 1 ? __("Monthly") : __("Anually") }}{{ $plan->limit_orders==0?"∞": $plan->limit_orders }}{{ $plan->enable_ordering == 1 ? __("Enabled") : __("Disabled") }}
@endif
@include('layouts.footers.auth')
@endsection