@extends('site.layout') @php use App\Models\Admin\Seo; $seos = Seo::orderBy('updated_at', 'DESC')->get(); $head = "" . "\n"; $body = "" . "\n"; foreach ($seos as $item) { switch ($item->type) { case '1': $head.= $item->script; break; case '2': $body.= $item->script; break; } } $config = \App\Models\Admin\Config::where('id',1)->first(); @endphp @section('head') {!! $head !!} @endsection @section('body') {!! $body !!} @endsection