@extends('front.axies.master') @section('body')
{{ __('Home') }}  
{{ __($page->name) }}
{{-- PAGE DESCRIPTION --}}
{{ __($page->name) }}
{!! $page->content !!}
{{-- OTHER PAGES --}}
{{ __('Other resources') }}
@foreach(config('pages', []) as $_page) @if($_page['slug'] !== $page->slug)
{{ $_page['name'] }}
{{ $_page['short_description'] }}
@endif @endforeach
@endsection