本文整理汇总了PHP中app\models\Project::whereSlug方法的典型用法代码示例。如果您正苦于以下问题:PHP Project::whereSlug方法的具体用法?PHP Project::whereSlug怎么用?PHP Project::whereSlug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Project
的用法示例。
在下文中一共展示了Project::whereSlug方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
* Frontend Controllers.
*/
get('/old', 'FrontendController@home')->name('old');
get('macros', 'FrontendController@macros');
get('/', 'FrontendController@home')->name('home');
get('/root', 'FrontendController@home');
use App\Models\Project;
use App\Models\Task;
Route::model('projects', 'App\\Models\\Project');
Route::model('tasks', 'App\\Models\\Task');
Route::bind('tasks', function ($value, $route) {
return App\Models\Task::whereSlug($value)->first();
});
Route::bind('projects', function ($value, $route) {
if (is_int($value)) {
return App\Models\Project::whereId($value)->first();
} else {
return App\Models\Project::whereSlug($value)->first();
}
});
Route::resource('projects', 'ProjectsController');
Route::resource('projects.tasks', 'TasksController');
/*
* These frontend controllers require the user to be logged in
*/
$router->group(['middleware' => 'auth'], function () {
get('dashboard', 'DashboardController@index')->name('frontend.dashboard');
get('profile/edit', 'ProfileController@edit')->name('frontend.profile.edit');
patch('profile/update', 'ProfileController@update')->name('frontend.profile.update');
get('projects/create', 'ProjectsController@create')->name('projects.create');
});
示例2: function
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/
//Route::get('/', 'WelcomeController@index');
Route::get('/', 'PhasesController@index');
Route::get('home', 'PhasesController@index');
Route::controllers(['auth' => 'Auth\\AuthController', 'password' => 'Auth\\PasswordController']);
$router->bind('projects', function ($slug) {
/**
*
* retrieve the first slug matching the query in the db
*/
return \App\models\Project::whereSlug($slug)->first();
});
$router->bind('clients', function ($id) {
return \App\models\Client::whereId($id)->first();
});
$router->bind('types', function ($id) {
return \App\models\Type::whereId($id)->first();
});
$router->bind('phases', function ($id) {
return \App\models\Phase::whereId($id)->first();
});
Route::get('search/{word}', 'PagesController@search');
Route::resource('clients', 'ClientsController');
Route::resource('types', 'TypesController');
Route::resource('phases', 'PhasesController');
Route::get('phases/addTiming/{id}', 'PhasesController@timing');