@extends('layouts.main')
@section('content')
{{ __('Spaces') }}
{{ __('New Space') }}
| {{ __('Space') }} | {{ __('SIP Domain') }} | {{ __('Expiration') }} |
|---|---|---|
|
{{ $space->name }}
@if ($space->super) Super @endif
{{ $space->host }} |
{{ $space->domain }} {{ $space->accounts_count }} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else @endif |
@if ($space->isExpired())
{{ __('Expired') }}
@elseif ($space->expire_at)
{{ __('In :days days', ['days' => $space->daysLeft]) }}
@else
@endif
@if ($space->expire_at)
{{ $space->expire_at->format('d-m-Y') }} @endif |