@extends('layouts/contentLayoutMaster') @section('title', __('locale.phone_numbers.buy_number')) @section('vendor-style') {{-- vendor css files --}} @endsection @section('content') {{__('locale.labels.number')}} {{__('locale.plans.price')}} {{__('locale.labels.capabilities')}} {{__('locale.labels.actions')}} @foreach ($numbers as $number) {{ $number->phoneNumber }} {{ \App\Library\Tool::format_price(5,auth()->user()->customer->subscription->plan->currency->format) }} {{ \App\Library\Tool::formatHumanTime(\Carbon\Carbon::now()->addMonth()) }} @if ($number->capabilities['SMS'] == true) {{ __('locale.labels.sms') }} @endif @if ($number->capabilities['voice'] == true) {{ __('locale.labels.voice') }} @endif @if ($number->capabilities['MMS'] == true) {{ __('locale.labels.mms') }} @endif @endforeach @endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection
{{ \App\Library\Tool::format_price(5,auth()->user()->customer->subscription->plan->currency->format) }}
{{ \App\Library\Tool::formatHumanTime(\Carbon\Carbon::now()->addMonth()) }}