@extends('admin.layout')
@section('styles')
@endsection
@php
$selLang = \App\Models\Language::where('code', request()->input('language'))->first();
@endphp
@if (!empty($selLang) && $selLang->rtl == 1)
@section('styles')
@endsection
@endif
@section('content')
- {{ __('Home') }}
- {{ __('Listings') }}
- {{ __('Pricing') }}
- {{ __('Blog') }}
- {{ __('FAQ') }}
- {{ __('Contact') }}
- {{ __('Website Templates') }}
- {{ __('vCards Templates') }}
@foreach ($pages as $page)
-
{{ $page->name }} {{ __('Custom Page') }}
@endforeach
@endsection
@section('scripts')
@endsection