mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
12 lines
282 B
PHP
12 lines
282 B
PHP
@set('menu', [
|
|
[ 'Contact', 'contact' ],
|
|
[ 'Subscriptions', 'subscriptions' ]
|
|
])
|
|
|
|
@foreach($menu as $menu_item)
|
|
<li class="{{ $menu_class }}">
|
|
<a href="{{ url('/dashboard/' . $menu_item[1]) }}">
|
|
{{ $menu_item[0] }}
|
|
</a>
|
|
</li>
|
|
@endforeach
|