@extends('frontend.layouts.master')
@section('title','Al-Bazai | '.$category->title)
@section('lang')
@if(app()->getLocale() == 'ar')
English
@else
عربي
@endif
@endsection
@section('content')
{{ $category->title ?? '' }}
@if(count($category->childs) > 0)
@foreach($category->childs->where('status',1) as $child)
-
{{ $child->title ?? '' }}
@endforeach
@endif
@endsection