Adding Favicon
To change the Favicon.ico image go to /public folder and replace the favicon.ico file present there.
Clear cache of your browser and it will start to show the new image you added.
Changing Logo in Login & Registration page
Replace the image pos\public\img\logo-small.png
Keep the new image name as “logo-small.png”
Changing Application Name in Landing page
To change the application name in the landing page, follow the steps given below
Step 1: Open .env file present in your codebase.
Step 2: Search for APP_NAME.
Step 3: Change the value for the APP_NAME =”examplePOS” as required.
How can I display the login page instead of the landing page? (Making login page as the landing page)
If you want to redirect the landing page of your POS system to login page page, you can modify the route in the pos/routes/web.php file to call the login blade instead of the welcome blade.
This will display the login page instead of the default welcome page when the POS system is accessed.
To change the route and call the login blade, follow these steps:
- Open the routes/web.php file in your code editor.
- Search for the route that specifies the view for the welcome blade file.
- Replace the view name with the name of the login blade file.
- Save the changes to the routes/web.php file.
For more information on using blade templates in Laravel, refer to the Laravel documentation at https://laravel.com/docs/10.x/blade.
If you need to pass data to the view, you can refer to this guide at https://www.geeksforgeeks.org/different-ways-for-passing-data-to-view-in-laravel/.
For more information on file paths in UltimatePOS, refer to this documentation at https://ultimatefosters.com/docs/ultimatepos/technical/different-files-path/.