@php // List items $listRows = array( array( 'icon' => 'abstract-26', 'color' => 'success', 'title' => 'Project Briefing', 'description' => 'Project Manager', ), array( 'icon' => 'pencil', 'color' => 'warning', 'title' => 'Concept Design', 'description' => 'Art Director' ), array( 'icon' => 'message-text-2', 'color' => 'primary', 'title' => 'Functional Logics', 'description' => 'Lead Developer' ), array( 'icon' => 'disconnect', 'color' => 'danger', 'title' => 'Development', 'description' => 'DevOps' ), array( 'icon' => 'security-user', 'color' => 'info', 'title' => 'Testing', 'description' => 'QA Managers' ) ); @endphp

Latest Tasks

{{ theme()->getView('partials/menus/_menu-1') }}
@foreach($listRows as $row)
{!! theme()->getIcon($row['icon'], "fs-2x svg-icon-" . $row['color']) !!}
{{ $row['title'] }} {{ $row['description'] }}
@endforeach