@extends('layouts.front-layout') @section('title') All Category @endsection @section('content')
img

All Category

@forelse($get_categories as $category)
img

{{$category->category_name ? : ''}}

{!! \Illuminate\Support\Str::limit(strip_tags($category->description), 80, '...') !!}

@empty

Category Data Not Available

@endforelse
{{-- --}}
@endsection