3,730 experience to go until the next level!
In case you were wondering, you earn Laracasts experience when you:
Earned once you have completed your first Laracasts lesson.
Earned once you have earned your first 1000 experience points.
Earned when you have been with Laracasts for 1 year.
Earned when you have been with Laracasts for 2 years.
Earned when you have been with Laracasts for 3 years.
Earned when you have been with Laracasts for 4 years.
Earned when you have been with Laracasts for 5 years.
Earned when at least one Laracasts series has been fully completed.
Earned after your first post on the Laracasts forum.
Earned once 100 Laracasts lessons have been completed.
Earned once you receive your first "Best Reply" award on the Laracasts forum.
Earned if you are a paying Laracasts subscriber.
Earned if you have a lifetime subscription to Laracasts.
Earned if you share a link to Laracasts on social media. Please email [email protected] with your username and post URL to be awarded this badge.
Earned once you have achieved 500 forum replies.
Earned once your experience points passes 100,000.
Earned once your experience points hits 10,000.
Earned once 1000 Laracasts lessons have been completed.
Earned once your "Best Reply" award count is 100 or more.
Earned once your experience points passes 1 million.
Earned once your experience points ranks in the top 50 of all Laracasts users.
Earned once your experience points ranks in the top 10 of all Laracasts users.
Started a new Conversation Passing Multiple Parameters In Route To Controller
In laravel 6, I'm trying to pass Multiple parameters in route to controller but getting stuck with this error-
" Missing required parameters for [Route: category.base] [URI: book/category/{id}/{slug}]
"
Route:
Route::get('/book/category/{id}/{slug}','[email protected]_base')->name('category.base');
Controller:
public function category_base($id, $slug){
//my code
}
Action url:
<a href="{{route('category.base',['id'=>$category->id,'slug'=>$category->slug])}}" class="row author-content px-0">View</a>
NB: slug stored on database
What i miss here?
Started a new Conversation Route Can't Access To Controller Methods In Laravel 6
When i try to access the controller methods it's return a blank page with 404 | Not Found
Though I can see those routes on route:list
Controller created simple way, I mean without resource
command
N.B: If i create controller with resource
then it's works fine with thire default methods like- store
, show
, edit
etc. But when i going to add custom methods on this controller then this problem appear.
Route: First route works fine. But 2nd one not
Route::group(['middleware' => 'web', 'namespace'=>'FrontEnd'], function(){
Route::get('/', '[email protected]'); //This route works
// collection view
Route::get('collection-details/{$id}', '[email protected]_details')->name('view.collection.details');
//This one not working
});
Controller:
<?php
namespace App\Http\Controllers\FrontEnd;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Collection;
use App\Product;
class FrontViewController extends Controller
{
public function index()
{
$collections = Collection::all()->random(3);
return view('index',compact('collections'));
}
public function collection_details($id)
{
$collection = Collection::find($id);
$product_ids = json_decode($collection->products_id);
$products = Product::find($product_ids);
return view('pages.collectionDetails',compact('collection','products'));
}
}
I tried to solve this issue from last two days.
Please help me to solve this. This one make me crazy.