@extends('layouts.app', ['title' => __('Pages')]) @section('content')
{{ __('Name') }} | {{ __('Price') }} | {{ __('Period') }} | @if (config('app.issd')){{ __('Orders') }} | @else{{ __('Ordering') }} | @endif|
---|---|---|---|---|---|
{{ $plan->name }} | {{ $plan->price }} | {{ $plan->period == 1 ? __("Monthly") : __("Anually") }} | @if (config('app.issd')){{ $plan->limit_orders==0?"∞": $plan->limit_orders }} | @else{{ $plan->enable_ordering == 1 ? __("Enabled") : __("Disabled") }} | @endif