@extends('layouts/contentLayoutMaster') @section('title', 'Category') @section('content')

@error('title') {{ $message }} @enderror
Cancel

Category listing

Add Category
@forelse ($data as $key => $row) @empty @endforelse
@sortablelink('id', 'Id') @sortablelink('title', 'Title') @sortablelink('image', 'Image') Actions
{{ $data->perPage() * ($data->currentPage() - 1) + ($key + 1) }} @php $row->title = json_decode($row->title); @endphp
    @foreach($row->title as $title)
  • {{ $title ?? 'N/A' }}
  • @endforeach
@if(!empty($row->image)) @endif
No records found.
@endsection