@extends('admin.layouts.master') @section('title') users @endsection @section('css') @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($data as $row) {{-- --}} @include('admin.users.deleted') @endforeach
name phone phone whatsapp count Orders Status Action
{{ $row->name() }} {{ $row->phone }} {{ $row->whatsapp_phone }} {{ $row->orders()->count() }}
is_active == '1' ? 'checked' : ''}} onchange="toggleStatus({{$row->id}}, this.checked ? '1' : '0')">
--}} {{-- --}}{{-- --}} {{-- --}}{{-- --}} {{-- --}}{{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{--
{{$data->links()}}
@endsection @section('js') @endsection