Search code examples
phplaravelparametersroutes

Passing id through an link href in Laravel


is it possible to pass id through an link href in Laravel and display that page like /projects/display/2.

I have this link:

<td><a href="{{ url('projects/display', $projects->id) }}" class="btn btn-info">View</a></td>

It displays the id when hovering over the link as /projects/display/2. But whenever i click on the link i get an error message of:

 Sorry, the page you are looking for could not be found.

I have a view setup called projects/display, plus routes and controller.

routes:

<?php


Route::group(['middleware' => ['web']], function (){

    Route::get('/', 'PagesController@getIndex');

    Route::get('/login', 'PagesController@getLogin');

    Auth::routes();

    Route::get('/home', 'HomeController@index');

    Route::get('/projects/display', 'ProjectsController@getDisplay');

    Route::resource('projects', 'ProjectsController');


});

Controller:

<?php

namespace App\Http\Controllers;

use App\project;
use App\Http\Requests;
use Illuminate\Http\Request;
use Session;

class ProjectsController extends Controller
{

    public function index()
    {



    }


    public function create()
    {
        return view('projects.create');
    }



    public function store(Request $request)
    {
        $this->validate($request, array(

            'name' => 'required|max:200',
            'description' => 'required'
        ));

        $project = new project;

        $project->name = $request->name;
        $project->description = $request->description;

        $project->save();

         Session::flash('success', 'The project was successfully created!');

        return redirect()->route('projects.show', $project->id);


    }


    public function show()
    {
        $project = Project::all(); 

        return view('projects.show')->withProject($project);

    }


    public function edit($id)
    {
        //
    }


    public function update(Request $request, $id)
    {
        //
    }

    public function getDisplay($id){


        $project = Project::find($id);

        return view('projects/display')->withProject($project);

    }





}

Solution

  • You need to change your route to:

    Route::get('/projects/display/{id}', 'ProjectsController@getDisplay');
    

    And then generate URL with:

    {{ url('projects/display/'.$projects->id) }}