@extends('front.layouts.master-auth') @section('content')
@if(isset($breadcrumbs) && is_array($breadcrumbs) && count($breadcrumbs) > 0) @endif

@lang('front.Explore') @lang('Skills')

@if($categories->isEmpty())

@lang('No skills found.')

@else
@foreach($categories as $category)

{{ $category->name }}

@foreach($category->skills as $skill) @endforeach
@endforeach
@endif
@endsection