@extends('layouts.app', ['title' => __('Pages')]) @section('content')
| {{ __('Name') }} | {{ __('Price') }} | {{ __('Period') }} | {{ __('Items limit') }} | {{ __('Ordering') }} | |
|---|---|---|---|---|---|
| {{ $plan->name }} | {{ $plan->price }} | {{ $plan->period == 1 ? __("Monthly") : __("Anually") }} | {{ $plan->limit_items == 0 ? __("Unlimited") : $plan->limit_items }} | {{ $plan->enable_ordering == 1 ? __("Enabled") : __("Disabled") }} |