79638317

Date: 2025-05-26 04:58:14
Score: 0.5
Natty:
Report link

In Laravel 10+ , you can share data with all 404 error views using View Composers in AppServiceProvider.php like this:

View::composer('errors::404', function ($view) {
    $view->with('data', $data);
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Azade