Hi,
How to install a blank panel, no modification needed?
Preferably only with authentication.
Of course, with the absolute minimum of dependency.
Laravel 9
I don't want my template to be called demo1. I don't know what files you added or edited when creating the laravel package. I want to make the template itself, step by step. I want to keep the number of JS and CSS files to a minimum. Have I managed to explain my problem now?
Hi,
The term "demo" we used is for the name of different layouts and styles.
You have to customize the name.
You can remove the unused demo folders from the layout folder and assets folder.
resources/views/layout/demo*
resources/assets/demo*
If you need more clean assets. You have to create your own empty Laravel project, get the assets JS and CSS files only from the HTML version. Copy the HTML markup from the HTML version. This will more plain Laravel app without other unused PHP codes.
Thanks
This was not what I wanted to achieve. I want to install the template on a clean Laravel install. I want to get rid of demo1 etc.
Hi,
I'm confused what you mean by install on a clean laravel project ,but you want to get rid of the demo1 etc.
Can you give more detail on this?
If you want to transfer the Metronic assets to a clean laravel project. You can use the laravel installation documentation and then just move all of the assets for the demo of your choice over to that project.
Hi,
There is no installation process for a blank page.
You can create a view in Laravel by simply creating a folder in resources/views, once you've created your blade.php file.
Simply add -
<x-base-layout>
Empty Page
</x-base-layout>
Route::get("/page_title", function(){
return View::make("directionsto.page");
});