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