@extends('laundry::layouts/contentLayoutMaster') @section('title', __(''.$title.'s') ) @section('vendor-style') {{-- vendor css files --}} @livewireStyles @endsection @section('page-style') @endsection @section('content') @if(session()->has('message')) @endif
@foreach($users as $user) @if($user->id!=1) @endif @endforeach
{{ __('ID') }} {{ __('Name') }} {{ __('Phone') }} {{ __('Dated') }} {{ __('Status') }} {{ __('Business') }} {{ __('Expiry') }} {{ __('Action') }}
{{ $user->id }} {{ $user->name }} {{ $user->phone }} {{ date('Y-m-d', strtotime($user->created_at)) }} {{ $user->status ? 'Enabled' : "Disabled" }} {{ $user->business->name }} {{ date('Y-m-d', strtotime($user->business->expired_at)) }}
@endsection @section('vendor-script') @livewireScripts {{-- vendor files --}} @endsection @section('page-script') {{-- Page js files --}} @endsection