<?php
namespaceApp\Http\Controllers;useApp\Models\student;useIlluminate\Http\Request;classStudentControllerextendsController{/**
* Display a listing of the resource.
*/publicfunction create(){return view('student.create');}publicfunction store(Request $request){
dd('ok ok ok');}publicfunction index(){//}/**
* Show the form for creating a new resource.
*//**
* Store a newly created resource in storage.
*//**
* Display the specified resource.
*/publicfunction show($id){//}/**
* Show the form for editing the specified resource.
*/publicfunction edit($id){//}/**
* Update the specified resource in storage.
*/publicfunction update(Request $request, student $student, $id){//}/**
* Remove the specified resource from storage.
*/publicfunction destroy(student $student, $id){//}}
السؤال
ايمن ميلاد
السلام عليكم لدي مجلد اسمه student موجود داخل مجلد views مجلد student به ملف create.blade.php
لماذا عندما ازور رابط يقول لي خطا
وهادي ملفات web.php
وهادي ملف controall
قمت بتغير نوع action
<form action="{{ route('student.create') }}" class="form-inline" method="POST">
4 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.