Как сделать чтобы рекламный блок адсенс (adsense) выводился только один раз?

<script async src=»https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js»></script> <script> if (typeof slot12345678910 == «undefined») { document.write(‘<ins class=»adsbygoogle» style=»display:block» data-ad-client=»ca-pub-3210847618764535″ data-ad-slot=»12345678910″ data-ad-format=»auto» data-full-width-responsive=»true»></ins>’); } </script> <script>

21. Данные сайдбара

View Composer Изменим app/Providers/AppServiceProvider.php : public function boot() { view()->composer([‘layouts.category_layout’, ‘layouts.layout’], function ($view) { $view->with(‘categories’, Category::select(‘title’, ‘slug’)->withCount(‘posts’)->orderBy(‘posts_count’, ‘desc’)->get())->with(‘popularPosts’, Post::orderBy(‘views’, ‘desc’)->limit(3)->get());