@extends('admin.layouts.master') @section('title', __('static.landing_pages.landing_page')) @use('App\Models\Blog') @use('App\Models\Page') @use('App\Models\Faq') @use('App\Models\Testimonial') @php $blogs = Blog::where('status', true)->get(['id', 'title']); $pages = Page::where('status', true)->get(['id', 'title']); $faqs = Faq::get(['id', 'title', 'description']); $testimonials = Testimonial::get(); @endphp @section('content')