'Unable to Import CSS in a specific view Laravel 7

I'm trying to import the css into a blade.php file. This is the code of the route in the web.php that generates multiple pages from a collection

Route::get('/products/{id}', function ($id){
$product = collect(config('myconfig.products'));
$selectedProduct = $product->firstWhere('id', $id);
return view('guest.product', [
    'title'=> $selectedproduct['series'],
    'product'=> $selectedproduct
]);
})->name('product');

I don't know if the problem is here, I can see all the content but not the style and I also have parts in common in all the pages (the header and the footer) that do show me the content but not the style or the images (in the tag img). I think that maybe I should use the url function to import the css in the blade.php file but I don't quite understand how to use it and where should be placed. Can somebody help me?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source