@extends('panel.layout.base') @section('title','İnceleme') @section('content') Geri Dön
@if(count($category) > 0)
@foreach($category as $item)
{{ $item['title'] }}
@endforeach
@endif
@foreach($data as $item)
{{ $item['title'] }}

{!! $item['content'] !!}

@endforeach
@foreach(\App\Models\FAQ::with('category')->whereRelation('category','type','admin')->where('language','tr')->get()->toArray() as $item) @endforeach
{{ sprintf('%s | #%s',$item['title'],$item['category']['title']) }} {!! strip_tags($item['content']) !!}
@endsection @section('script') @endsection