@extends('backend.layouts.main')
@section('title')
News & Event Categories
@endsection
@section('content')
| S.N. |
Image |
Name |
Slug |
Display Order |
Status |
Actions |
@foreach ($categories as $category)
| {{ $loop->iteration }} |
@if ($category->image)
@else
@endif
|
{{ $category->name }} |
{{ $category->slug }} |
{{ $category->display_order }} |
@if ($category->is_published)
Published
@else
Draft
@endif
|
|
@endforeach
@endsection
@section('scripts')
@endsection