mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-23 16:34:10 -05:00
11 lines
324 B
PHP
11 lines
324 B
PHP
@set('menu', [
|
|
[ 'Contact', 'contact' ],
|
|
[ 'Subscriptions', 'subscriptions' ],
|
|
[ 'Shows', 'shows' ],
|
|
[ 'News', 'news' ],
|
|
[ 'Videos', 'videos' ]
|
|
])
|
|
|
|
@foreach($menu as $menu_item)
|
|
<li class="{{ $menu_class }}"><a href="{{ url('/dashboard/' . $menu_item[1]) }}">{{ $menu_item[0] }}</a></li>
|
|
@endforeach
|