@extends('clients.layouts.app') @section('title', 'Knowledgebase') @section('content')

Knowledgebase

Find answers to common technical questions

How can we help you today?

@php $categories = [ ['name' => 'Getting Started', 'count' => 12, 'icon' => 'fa-rocket'], ['name' => 'Web Hosting', 'count' => 45, 'icon' => 'fa-server'], ['name' => 'Domains', 'count' => 28, 'icon' => 'fa-globe'], ['name' => 'Billing', 'count' => 15, 'icon' => 'fa-credit-card'], ['name' => 'Security', 'count' => 22, 'icon' => 'fa-shield-alt'], ['name' => 'Email', 'count' => 34, 'icon' => 'fa-envelope'], ]; @endphp @foreach($categories as $cat)

{{ $cat['name'] }}

{{ $cat['count'] }} Articles

@endforeach
@endsection