@extends('layouts.Master') @section('page')

{{$page_title}}

add New Category
@if($data) @foreach($data as $key=>$value)
Card image cap

{{$value->name?$value->name:'Null'}}

{{Str::limit($value->course_meta_description, $limit = 100, $end = '...') }}

{{--
$1,230/mo 34 SALES
--}}
@if($value->status == 1)
Published
@else
Draft
@endif
@endforeach @else

No Data Found

@endif
@endsection @push('script') @endpush