<?php // Routes for testimonial. // Guard routes for testimonial Route::prefix('{guard}/testimonial')->group(function () { Route::resource('testimonial', 'TestimonialResourceController'); }); // Public routes for testimonial Route::get('testimonials/', 'TestimonialPublicController@index'); Route::get('testimonial/{slug?}', 'TestimonialPublicController@show');