web.php
Код: Выделить всё
route::post('/contato', [ContatoController::class, 'contato'])->name('app.contato');
Код: Выделить всё
class ContatoController extends Controller
{
public function contato( Request $request){
dd($request);
return view('app.contato');
}
}
Код: Выделить всё
@csrf
Nome:
Email:
Mensagem:
Enviar
скриншот
Подробнее здесь: https://stackoverflow.com/questions/793 ... -post-lara
Мобильная версия