@extends('admin.layouts.app') @section('content')

Clients

Clients Lists
@if (count($clients) > 0) @foreach ($clients as $index => $client) @endforeach @else @endif
# Title (EN) Status Actions
{{ $index + 1 }} {{ $client->title_en }} @if ($client->status == 1) Active @else Dective @endif Edit
Records Not Found
@endsection