Posts by Jordann Vieira • 51 points
2 posts
-
0
votes1
answer113
viewsA: Error adding column in table 'users' Standard
Have you checked the Motel? The name is User.php, it’s on app/User.php: namespace App; use Illuminate\Notifications\Notifiable; use Illuminate\Foundation\Auth\User as Authenticatable; class User…
-
2
votes1
answer2516
viewsA: How to download a file to the server with php Laravel
First we create the fields in the View: <!DOCTYPE html> <html> <body> <form action="/arquivos" method="post" enctype="multipart/form-data"> <input type="file"…