@php use App\Models\Page; $page = Page::where('slug', '/')->first(); $title = $page?->title ?? 'About'; $metaTitle = $page?->meta_title; $metaDescription = $page?->meta_description; $canonicalUrl = $page?->canonical_url ?: url('/'); @endphp @extends('layouts.app') @section('schema') @endsection @section('content') {!! $page?->content !!} {{--
--}} {{--
--}} {{--

Portfolio

--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{-- --}} {{--
    --}} {{--
  • --}} {{--
  • --}} {{--
  • --}} {{--
  • --}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} @endsection