@extends('admin.layouts.app')
@section('content')
Content Categories
| # |
Title (EN) |
Status |
Actions |
@if (count($categories) > 0)
@foreach ($categories as $index => $category)
| {{ $index + 1 }} |
{{ $category->title_en }} |
@if ($category->status == 1)
Active
@else
Dective
@endif
|
Edit
|
@endforeach
@else
| Records Not Found |
@endif
@endsection