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