У меня есть страница с 4 лезвиями
=> layout.blade.php
=> index.blade.php
=> contact.blade.php
В layout.blade.php У меня есть два выхода
Один Is:
@yield('css') // to add additional css
Еще один:
@yield('script') //to add additional script
index.blade.php extends layout.blade.php
, чтобы я мог добавить section('css')
и section('script')
для дополнительного CSS или сценария только для индекса.blade.php page
Теперь проблема заключается в следующем: в layout.balde.php есть все общие ссылки и сценарии, но я неЯ хочу, чтобы эти ссылки были на каждой странице.я хочу какой-то способ;не загружать определенную ссылку или какую-либо ссылку на какую-либо страницу, которая расширяет layout.blade.php .
Пример:
=> layout.blade.php
-> <link href="one.css">
-> <link href="two.css">
=> index.blade.php extends layout.blade.php
-> <link href="one.css"> // because index extends layout
-> <link href="two.css"> // because index extends layout
=> contact.blade.php extends layout.blade.php
-> <link href="one.css"> // because index extends layout (i don't want to load this link)
-> <link href="two.css"> // because index extends layout
Примечание
Мне НУЖЕН ДИНАМИЧЕСКИЙ СПОСОБ СКАЗАТЬ ОТ contact.blade.php , ЧТОБЫ ОТКЛЮЧИТЬ ЭТУ ССЫЛКУ ИЛИ НЕКОТОРЫЕ ССЫЛКИ, КОТОРЫЕ ОТ layout.blade.php