@extends('layouts.app') @section('title', $viewData["title"]) @section('subtitle', $viewData["subtitle"]) @section('content')
Add a new user
@if($errors->any()) @endif
@csrf
Last created users
@foreach ($viewData["all_users"] as $user) @if (null !== $user->get_email()) @else @endif @if (null !== $user->get_password()) @else @endif @if (null !== $user->get_link()) @else @endif @if (null !== $user->get_updated_at()) @else @endif @endforeach
# First Last Email Customer Directory Licence Password Link Last modification date Edit Send email
{{ $user->get_id() }} {{ $user->get_firstname() }} {{ $user->get_lastname() }}{{ substr($user->get_email(),0,6) }}...{{ $user->get_customer()->get_customer_name() }} {{ $user->get_directory() }} {{ $user->get_licence() }}{{ substr($user->get_password(),0,6) }}...{{ substr($user->get_link(),0,6) }}...{{ substr($user->get_updated_at(),0,6) }}...
@endsection