@extends('admin.layouts.app') @section('title', \App\Helpers\TranslationHelper::translate('Notification us Details')) @section('crumb') @endsection @section('content')

{{\App\Helpers\TranslationHelper::translate('Notification us Details')}}

@if (auth()->guard('admin')->user()->can('notification.edit', 'admin')) @endif
@foreach (Config('language') as $key => $lang)
{{\App\Helpers\TranslationHelper::translate('Title in')}} {{__('methods.' . $lang)}}:
{{$notification->getTranslation('title',$key)}}
@endforeach
@foreach (Config('language') as $key => $lang)
{{\App\Helpers\TranslationHelper::translate('Description in')}} {{__('methods.' . $lang)}}:
{!! $notification->getTranslation('description',$key) !!}
@endforeach
@stop @section('script') @stop