I have a route on the site that is to a webcal resource so we would like the URL to be generated with webcal://
when using {{ URL::route('calendar') }}
in the Blade template.
I tried adding a protocol option but this is ignored, so I guess there must be another way?
Route::get('/calendar.ics',
[
'as' => 'calendar',
'uses' => 'EntityController@calendar',
'protocol' => 'webcal'
]
);
Suggestions welcome!