Support the ongoing development of Laravel.io →
posted 9 years ago
Requests
Last updated 2 years ago.
0

Do you have a route named 'emailapp.defaulttemplate'? That sounds like a blade template.

Last updated 9 years ago.
0

You're redirecting to a named route, which you don't have defined. Make sure your routes.php looks like this:

Route::get('/your-route', [
  'uses' => 'YourController@method',
  'as' => 'NAME_OF_ROUTE'            // I would name this differently... ;-)
]);

And then change the code in your controller:

return Redirect::route('NAME_OF_ROUTE') .....

You can name the route anything you want!

Last updated 9 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

vjothi vjothi Joined 25 Sep 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.