I want to define a url in Laravel 4.1 which contains slash character. But I can't do that in Laravel 4.
This is my code:
<?php
// app/routes.php
Route::get('my/car', function()
{
return 'This is car page';
});
I want to define a url in Laravel 4.1 which contains slash character. But I can't do that in Laravel 4.
This is my code:
<?php
// app/routes.php
Route::get('my/car', function()
{
return 'This is car page';
});