my default is vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\views
@extends('errors::illustrated-layout')
@section('code', '404')
@section('title', __('Page Not Found'))
@section('image')
<div style="background-image: url({{ asset('/svg/404.svg') }});" class="absolute pin bg-cover bg-no-repeat md:bg-left lg:bg-center">
</div>
@endsection
@section('message', __('Sorry, the page you are looking for could not be found.'))
create a bade view at resources/views/errors/404.blade.php and customize it as needed. keep in mind your layout could be named @extends('layouts.app') instead of the laravel default
Thank you. That's exactly what I was looking for.
I opened another thread for de __('text') question ... :-)
this is how you would make the text "GO Home" in your language https://laravel.com/docs/5.7/localization
You are getting device id through GET request so use the below line instead of $request()->device_id.
Use this $name = $request->input('device_id') Build your own ecommerce marketplace software Online rental marketplace- Airbnb clone,Vacation Rental script,Car rental script **Food ordering **script
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community