@extends('layouts.backend.app') @section('content')

{{ __('Faqs') }}

@csrf
@foreach($posts as $post) @php $json=json_decode($post->value); @endphp @endforeach
{{ __('Name') }} {{ __('Language') }} {{ __('Date') }}
{{ $json->title }} {{ $post->lang }} {{ __('Last Modified') }}
{{ $post->updated_at->diffForHumans() }}
{{ __('Name') }} {{ __('Language') }} {{ __('Date') }}
@endsection @section('script') @endsection