@extends('admin.layouts.master') @section('title') Word Category Manage | @endsection @section('content')

Word Category List

{{ settings()->website_name }}

{{ settings()->address }}

{{ settings()->website_email }}

@if(session('success'))
{{ session('success') }}
@endif @forelse ($WordCategoryManage as $record) {{-- --}} @empty @endforelse
# Id Title Sub-title Image Paid Action
{{ $record->id ?? '' }} {{ $record->title ?? '' }} {{ $record->sub_title ?? '' }} {{ $record->image ?? '' }} {{ $record->paid == 1 ? 'Paid' : 'Unpaid' }} @if($record->image) {{ $record->title }} @else No Image @endif {{--
@method('DELETE') @csrf @if ($errors->any()) @endif
--}}
No data found
@endsection