laravel-4

    0熱度

    1回答

    我想擴展laravel 4的分頁類來添加我自己的方法。我怎樣才能做到這一點?

    1熱度

    1回答

    我有一個L3應用程序,我試圖移植到L4。在L3的版本,我的途徑之一是 Route::get('/(:any)/(:all?)', etc... 這讓我來處理URL段的任意數字,例如: /contact_page /store_category /store_category/shirts_category /store_category/shirts_category/specific_

    4熱度

    1回答

    我試圖使用通配符創建一個路由,與我從L3知道語法,但我不斷收到一個404 我註冊routes.php我的路線: Route::get("get_cities/(:num)","[email protected]_cities"); 控制器和函數存在並且在我刪除通配符時找到。語法是否改變? 雖然我在這裏:是否有任何文檔可以引用類似的問題,還是還沒有寫出來?

    5熱度

    4回答

    我想在我的Laravel 4包中安裝控制器,但無法使路由工作。 我已經按照Laravel 4文檔中的包裝說明操作,並獲得了與非控制器路線一起工作的routes.php文件。 有人請給我一些關於如何讓包控制器在Laravel 4中工作的說明,這將非常感激。 在此先感謝。 拉爾斯 // EDIT: // routes.php Route::get('admin', 'Package::

    6熱度

    5回答

    我已經設置了一些驗證的控制器。 public function attemptLogin() { $rules = array( 'email'=>'required|email', 'password'=>'required' ); $validator = Validator::make(Input::all() , $rules);

    3熱度

    5回答

    我是laravel的新手,現在正在學習它。我給在routes.php文件 Route::resource('contacts', 'ContactsController'); 以下的路徑,但是,當我打開我的網頁瀏覽器,它給了我下面的錯誤 Unhandled Exception Message: Call to undefined method Laravel\Routing\Route

    0熱度

    1回答

    我有一個: // administration app/controller/admin/ProjectsController.php 而且我想用太多: // public in website app/controller/ProjectsController.php 但是,在autoload_classmap.php,它registred這樣的: 'ProjectsControll

    1熱度

    4回答

    如何將變量發送到Laravel 4中的主佈局? 這裏$類是不具備的總綱發展藍圖: protected $layout = 'layouts.master'; public function index() { $categories = Category::all(); $data = array('categories' => $categories); $t

    8熱度

    7回答

    我更新我的Laravel 3應用Laravel 4時,我打這個問題... 路線我曾嘗試: Route::get('backend/login', 'backend/[email protected]'); Route::get('backend/login', '[email protected]');

    0熱度

    1回答

    我是Laravel 4的新手,我很難掌握路線。我有一個前臺到我的網站和一個後端。我想在example.com/dashboard/...下顯示後端發生的所有事情。我也想用足智多謀的控制器。我需要在routes.php中設置哪些設置,以便我始終可以引用我的users控制器,但是在URL中的所有情況下都會發生在dashboard之下? 例子: 我鏈接到users/edit/1但在URL看起來像exam