我知道这是关于堆栈溢出的非常常见的问题,我尝试了其中的一些,但它在我的场景中不起作用。
我的 CollectionController 看起来像这样。
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Http\Middleware\Role;
use Illuminate\Support\Facades\Input;
use App\User;
use App\Invoice;
use Session;
use Validator;
class CollectionController extends Controller
{
/**
* Display a listing of the resource.
*
* @return Response
*/
public function __construct(){
$this->middleware('role:collector'); // replace 'collector' with whatever role you need.
}
public function getHome(){
$empid= Auth::user()->empid;
$invoice = Invoice::where('Status','=',1)->orderBy('Id', 'desc')->get();
return View('collectionmodule/home')->with(array('invoices'=>$invoice));
}
public function getPayment(){
dd('sssss');
$id =$invoiceid;
$invoice = Invoice::where('Id','=',$id)->payments()->comments()->get();
return View('collectionmodule/payment')->with(array('invoice'=>$id));
}
}
我这个班的路线如下
Route::controller('collection/home','CollectionController');
Route::controller('collection/payment','CollectionController');
我收到以下错误
NotFoundHttpException in RouteCollection.php line 161:
没有一条路线有效,任何人都可以帮助我
我试过了
http://localhost:8000/collection/home/
and
http://localhost:8000/collection/payment
谢谢