I have a route on a site that is a webcal resource, so we would like the URL to be generated using webcal://when used {{ URL::route('calendar') }}in the Blade template.
I tried to add a protocol parameter, but this is ignored, so I think there should be a different way?
Route::get('/calendar.ics',
[
'as' => 'calendar',
'uses' => 'EntityController@calendar',
'protocol' => 'webcal'
]
);
Suggestions are welcome!
source
share