I have two views created in Laravel, I already have the controller and the migration that contains a table called "form"
Posted: Sun Jul 03, 2022 9:58 am
welcome.blade.php * .env ✓HTDOCSU a fonasa2 > routes > web.php 1 config > database > lang > public ✓ resources > css > js ✓ views form edit.blade.php index.blade.php log.blade.php WNA > routes > storage > tests > vendor * .editorconfig * .env E .env.example 2 3 use Illuminate\Support\Facades\Route; 4 use App\Http\Controllers\FormController; /* 5 6 7 8 9 10 11 create.blade.php 12 13 | Web Routes | | Here is where you can register web routes for your application. These | routes are loaded by the RouteService Provider within a group which | contains the "web" middleware group. Now create something great! | 14 */ 15 16 17 18 19 20 21 22 23 log.blade.php Route::get('/', function () { return view('log'); }); web.php Route::resource('/form', FormController::class);