@extends('front.layouts.master-auth') @section('content')

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

@if($categories->isEmpty())

@lang('No categories found.')

@else
@foreach($categories as $category)
{{ $category->name }} @if($category->subCategories->isNotEmpty()) @endif
@endforeach
@endif
@endsection