muchas cosas, aun esta en proceso de construccion

This commit is contained in:
Daniel Cortés
2019-06-23 00:09:30 -04:00
parent a3a974d750
commit 110b0a07fc
23 changed files with 271 additions and 981 deletions

View File

@@ -7,9 +7,9 @@ Route::get('/now', function () {
return view('now');
})->name('now');
Route::get('/blog', function () {
return view('blog');
})->name('blog');
Route::get('/blog', 'BlogController@index')->name('blog.index');
Route::get('blog/archive', 'BlogController@archive')->name('blog.archive');
Route::get('/blog/{post}', 'BlogController@show')->name('blog.show');
Route::get('/projects', function () {
return view('projects');