@extends('layouts.main')
@section('content')
@include('admin.parts.settings_tabs')
| {{ __('Name') }} |
|
@foreach ($phone_countries as $phone_country)
|
@if ($phone_country->activated)
{{ __('Activated') }}
@else
{{ __('Deactivated') }}
@endif
{{ $phone_country->name }}
{{ $phone_country->code }} - {{ $phone_country->country_code }}
|
@if ($phone_country->activated)
@else
@endif
|
@endforeach
@endsection