1
I have a table that saves me users and their data, name and saved in a single field.
What I want is to take a name from the database for example César Sousa and show only César
I am using Laravel 5.4 and rescues the user name through {{Session::get('nome')}}
which is a secret I keep when I log in.
I wanted the time I get the username in the Blade template to show me the first name before the first space.
Show the code you’ve tried
– Victor Eyer