رفتن به مطلب
انجمن پشتیبانی لاراول ایران

هاست لاراول با پشتیبانی 24 ساعته و امکانات کامل از مدیرهاست

user21

مشکل با ساخت و استفاده از کنترلر در جلسه 3

Recommended Posts

سلام. طبق آموزش پیش رفتم و با فایل artisan یک controller به اسم indexController و متدی با نام index ایجاد کردم

:web.php

<?php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Route::get('/','indexController@index');
Route::get('/login', function () {
    return view('login');
});

:indexController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class indexController extends Controller
{
    public function index(){
		return view('welcome');
	}
}

اما هنگام مشاهده اکسپشن پرتاب و این پیام چاپ میشه:

Target class [indexController] does not exist.

Share this post


Link to post
Share on other sites

هاست لاراول با پشتیبانی 24 ساعته و امکانات کامل از مدیرهاست

در 20 ساعت قبل، user21 گفته است :

سلام. طبق آموزش پیش رفتم و با فایل artisan یک controller به اسم indexController و متدی با نام index ایجاد کردم

:web.php


<?php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Route::get('/','indexController@index');
Route::get('/login', function () {
    return view('login');
});

:indexController.php


<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class indexController extends Controller
{
    public function index(){
		return view('welcome');
	}
}

اما هنگام مشاهده اکسپشن پرتاب و این پیام چاپ میشه:

Target class [indexController] does not exist.

با دادن آدرس کامل کنترلر مشکل حل میشه:

Route::get('/','App\Http\Controllers\indexController@index');

 

Share this post


Link to post
Share on other sites

وارد این گفتگو شوید

میتوانید پیام خود را ارسال کنید و بعد ثبت نام نمایید. در صورتی که حساب کاربری دارید, هم اکنون وارد شوید و در این گفتگو شرکت کنید.

مهمان
پاسخ به این موضوع ...

×   شما در حال چسباندن محتوایی با قالب بندی هستید.   حذف قالب بندی

  Only 75 emoji are allowed.

×   لینک شما به صورت اتوماتیک جایگذاری شد.   نمایش به عنوان یک لینک به جای

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • جدید...