HomeLaravel

#Part3 laravel 5 Blog Tutorial : Restful Controllers & Routing System

Laravel 5.3 CRUD Tutorial : how to create blog apps in Laravel part 3 about Restful Controllers & Routing System in laravel 5.3

Laravel 5.5 AJAX : Create Like & Dislike System using AJAX in Laravel 5.5
Laravel 5.5 Tutorial : Create Admin Panel using AdminLTE Bootstrap Template in Laravel 5.5
Laravel 5.5 Middleware Tutorial : How to Create Login with Multiple Level Access in laravel 5.5
Create Blog Apps in Laravel 5.3 - To continue or CRUD / create blog apps in laravel, this lesson will discuss about Restful Controllers & Routing System in Blog project.

at the previews lessons, we has create database and connect it form laravel project, if you still confused, just read #Part2 laravel 5 Blog Tutorial : Database & Migration.

Restful Controllers & Routing System
To create new Controllers in our Laravel Project, we use 'Artisan Command' :

php artisan make:controller BlogController --resource

--resource syntax mean, we will create a controller (BlogController.php) with fully configuration/function like the Index functions, Store function, Create function, Show function, Edit function, and more.

This is default our Controller

Restful Controllers & Routing System

BlogController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Http\Requests;

class BlogController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return IlluminateHttpResponse
     */
    public function index()
    {
        // 
    }

    /**
     * Show the form for creating a new resource.
     *
     * @return IlluminateHttpResponse
     */
    public function create()
    {
        //
    }

    /**
     * Store a newly created resource in storage.
     *
     * @param  IlluminateHttpRequest  $request
     * @return IlluminateHttpResponse
     */
    public function store(Request $request)
    {
        //
    }

    /**
     * Display the specified resource.
     *
     * @param  int  $id
     * @return IlluminateHttpResponse
     */
    public function show($id)
    {
        //
    }

    /**
     * Show the form for editing the specified resource.
     *
     * @param  int  $id
     * @return IlluminateHttpResponse
     */
    public function edit($id)
    {
        //
    }

    /**
     * Update the specified resource in storage.
     *
     * @param  IlluminateHttpRequest  $request
     * @param  int  $id
     * @return IlluminateHttpResponse
     */
    public function update(Request $request, $id)
    {
        //
    }

    /**
     * Remove the specified resource from storage.
     *
     * @param  int  $id
     * @return IlluminateHttpResponse
     */
    public function destroy($id)
    {
        //
    }
}

Next, create new routes, we has discuss about routes, please read for more detail Routing Basics in Laravel.

Web.php

<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a Closure or controller method. Build something great!
|
*/

Route::get('/', function () {
    return view('welcome');
});

// we will ad new route into middleware group

Route::group(['middleware' => ['web']], function() {
  Route::resource('blog','BlogController');  
});

Video Tutorial Restful Controllers & Routing System



See you next Lessons...

Feel free to code it up and send us a pull request.

Hi everyone, let's me know how much this lesson can help your work. Please Subscribe and Follow Our Social Media 'kodeajaib[dot]com' to get Latest tutorials and will be send to your email everyday for free!, Just hit a comment if you have confused. Nice to meet you and Happy coding :) all ^^



Follow by E-Mail


COMMENTS

DISQUS
Name

ADO.NET,3,Ajax,6,Android,9,AngularJS,4,ASP.NET,4,Blogger Tutorials,7,Bootstrap,7,C++,1,Codeigniter,2,Cplusplus,6,Crystal Report,6,CSharp,25,Ebook Java,2,FlyExam,1,FSharp,3,Game Development,2,Java,35,JDBC,2,Laravel,89,Lumen,2,MariaDB,2,Ms Access,3,MySQL,31,ODBC,6,OleDB,1,PHP,14,PHP Framework,6,PHP MYSQLI,9,PHP OOP,5,Python,8,Python 3,4,SQL Server,4,SQLite,4,Uncategorized,5,Vb 6,2,Vb.Net,89,Video,48,Vue Js,4,WPF,2,Yii,3,
ltr
item
KODE AJAIB: #Part3 laravel 5 Blog Tutorial : Restful Controllers & Routing System
#Part3 laravel 5 Blog Tutorial : Restful Controllers & Routing System
Laravel 5.3 CRUD Tutorial : how to create blog apps in Laravel part 3 about Restful Controllers & Routing System in laravel 5.3
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0HlzAXoXG3BiMztPYpGyVTTauxgfQebezLjjjwdwtp5t7qAo_zKpdi89NVmIuAzjmrMMEalfB9W8oT4jtNb2eQoOz45Kvg8itxdrsz1ALCtMLFRUZeIAGH-wkzO42CCYnyXYDWDXw70c/s320/laravel-tutorial-for-beginner.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0HlzAXoXG3BiMztPYpGyVTTauxgfQebezLjjjwdwtp5t7qAo_zKpdi89NVmIuAzjmrMMEalfB9W8oT4jtNb2eQoOz45Kvg8itxdrsz1ALCtMLFRUZeIAGH-wkzO42CCYnyXYDWDXw70c/s72-c/laravel-tutorial-for-beginner.png
KODE AJAIB
https://scqq.blogspot.com/2016/09/laravel-5-blog-tutorial-restful-controller-routing.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2016/09/laravel-5-blog-tutorial-restful-controller-routing.html
true
3214704946184383982
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy