@extends('admin.layout.admin') @section("title"," Dashboard | Wishours") @section("content")

Categories

Category List

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('message'))
{{ session('message') }}
@endif
@php $count = 1; @endphp @if($categories) @foreach($categories as $category) @endforeach @else @endif
# Title Description Slug Category Level Status Created Date Actions
{{ $category->title }} {!! $category->description !!} {{ $category->slug }} {{ $category->parent_id }} {{ $category->status }} {{ $category->created_at }} Edit | |
No Categories Found.
@endsection