How to redirect a route after store process at L5 ?
My route is
Route::get('/pages/aracislemler/{id}', ['middleware' => ['roles'], 'uses' => 'PagesController@aracislemler', 'roles' => ['Admin']]);
And controller function
public function store()
{
$brand_name = Request::get('brand_id');
$type_id = Request::get('type_id');
//$client_id = Request::get('representive_client_id');
if (!Brand::find($brand_name)) {
$brand = new Brand;
$brand -> brand_name = $brand_name;
$brand -> type_id = $type_id;
$brand -> save();
$last_brand_id = $brand -> id;
$input = Request::except('brand_id');
Vehicle::create($input);
$vehicle = Vehicle::orderBy('created_at', 'desc')->first();
$vehicle -> update(array('brand_id' => $last_brand_id));
}else{
$input = Request::all();
Vehicle::create($input);
}
return redirect('pages/aracislemler');
}
If you want to redirect to record that was created/updated , you should change:
into:
and now:
into