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

💰 {{__('Pricing plans')}}

@include('partials.flash')
@if(count($plans))
@foreach ($plans as $plan) @endforeach
{{ __('Name') }} {{ __('Price') }} {{ __('Period') }}
{{ $plan->name }} {{ $plan->price }} {{ $plan->period == 1 ? __("Monthly") : __("Anually") }}
@endif
@endsection