@extends('layouts.app') @section('title') Knowledge Base @endsection @section('content')

How Can We Help?

@foreach($categories as $key => $category)

{{$category->name}}

@if($category->articles_count == 0 )

Articles are coming soon

@else @foreach($category->articles as $article) id)}}" class="art-vieew">{{$article->name}} @endforeach @endif {{--
{{$article->name}}
--}}
@endforeach
@endsection