@extends('backend.index') @section('content')
Manage registered users, edit their profiles and block their accounts

Add new plan

@foreach ($services as $index => $item) @endforeach
Title Price Trial Period To Group Created At Updated At Action
{{ $item->title }} {{ number_format($item->price, 2) }} {{ config('settings.currency', 'USD') }} @if(! $item->trial) No @else {{ $item->trial_period }} @switch($item->trial_period_format) @case('D') Day @break @case('W') Week @break @case('M') Month @break @case('Y') Year @break @endswitch @endif {{ $item->plan_period }} @switch($item->plan_period_format) @case('D') Day @break @case('W') Week @break @case('M') Month @break @case('Y') Year @break @endswitch {{ $item->role->name }} {{ timeElapsedString($item->created_at) }} {{ timeElapsedString($item->updated_at) }}
@endsection