@php($title = 'Контакты') @extends('layouts.app') @section('content')
@if (!$status || $status == 'all' || $status == 'unique')

Уникальные

@livewire('clientsTable', ['status' => 'UNIQUE'])
@endif @if (!$status || $status == 'all' || $status == 'not unique')

Не уникальные

@livewire('clientsTable', ['status' => 'NOT UNIQUE'])
@endif
@endsection