@extends('panel.layout.base')
@section('title','İnceleme')
@section('content')
Geri Dön
@if(count($category) > 0)
@foreach($category as $item)
@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)
{{ sprintf('%s | #%s',$item['title'],$item['category']['title']) }} |
{!! strip_tags($item['content']) !!} |
@endforeach
@endsection
@section('script')
@endsection