@extends('layouts/contentLayoutMaster') @section('title', __('locale.phone_numbers.buy_number')) @section('vendor-style') {{-- vendor css files --}} @endsection @section('content')
@foreach ($numbers as $number) @endforeach
{{__('locale.labels.number')}} {{__('locale.plans.price')}} {{__('locale.labels.capabilities')}} {{__('locale.labels.actions')}}
{{ $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
@endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection