@extends('frontend.layouts.master') @section('title') {{$title}} @endsection @section('content') @php $banner_bg = ""; if($banner != null){ $banner_bg = 'style="background-image:url('.asset($banner->value).')"'; } @endphp @include('frontend.partials.navbar') {{$title}} @if(count($tutorials) > 0) {{-- @foreach ($tutorials as $index => $tutorial) @endforeach --}} @foreach ($tutorials as $index => $tutorial) @if ($tutorial->type == \App\Models\Tutorial::TypeImage) @elseif ($tutorial->type == \App\Models\Tutorial::TypeVideo) Your browser does not support the video tag. @endif @endforeach Previous Next @endif @if(count($faqs) > 0) FAQs @foreach($faqs as $index => $faq) {{ $faq['question'] }} {{ $faq['answer'] }} @endforeach @endif @endsection @section('script') @endsection