Lourguioui / helpjuicedemo1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CSE New Website

Requirements

Requirement
XAMPP
Composer

Deploy locally

1 - Fork and Clone:

2 - Install the necessary dependencies:

composer install

3 - Create your .env file from .env.example and generate an app key:

cp .env .env.example
php artisan key:generate  

4 - Run the server :

php artisan serve

Editing Views

You find all views in the folder /resources/views You find all CSS styles and JS files in the folder /public

Each section of views should be in a file, the file must be in this directory partials/{page-name}

Sections, or componenets that are used in more than one page like nav-bar and footer, must be directly in partials.

Button component already implemented:


<button>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    BUTTON
</button>

About


Languages

Language:Blade 54.3%Language:PHP 44.8%Language:HTML 0.5%Language:Shell 0.4%Language:Procfile 0.0%