@lang('You are currently deleting the following :count :noun.', [
'count' => ''.$users->count().'',
'noun' => Str::plural('user', $users->count()),
])
{{ $users->count() }} users
@lang('ID') |
@lang('Name') |
@lang('Email Address') |
@foreach($users as $user)
{{ $user->id }} |
{{ $user->name }} |
{{ $user->email }} |
@endforeach
@endsection
@push('scripts')
@endpush