properos/laravel-base

An amazing toolkit to kickstart your Laravel project.

Installs: 2 565

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 0

Open Issues: 1

Language:Blade

v1.0.12 2022-04-25 18:13 UTC

This package is auto-updated.

Last update: 2024-09-25 23:34:59 UTC


README

Base package with classes (Api, Base, Helper, Paginator, Theme), controllers and views necessarry to start a project.

Register provider on config/app.php

    'providers' => [
        "...",
        Properos\Base\BaseServiceProvider::class,
        "..."
    ],

Run composer dump php artisan vendor:publish Select -> Properos\Base\BaseServiceProvider

Themes It contains a Themes class to allow the use of several themes in the project. The name of theme is declared on env variable "THEME", if this variable isn't declare it going to take a default theme.

Use themes on routers.

    Route::get('/', function () {
        return  view('themes.'.\Properos\Base\Classes\Theme::get().'.index')->with(['theme'=>\Properos\Base\Classes\Theme::get()]);
    });

Create env.js Add on webpack.mix.js .js('resources/assets/js/bootstrap.js', 'public/be/js/core.js') .sass('resources/assets/js/be/sass/app.scss', 'public/be/css')

Add on resources/assets/bootstrap.js

    import Helpers from './misc/helpers'
    window.Helpers = Helpers;

Remove from resources/assets/bootstrap.js

    try {
        window.$ = window.jQuery = require('jquery');

        require('bootstrap');
    } catch (e) {}

Run npm install

Define host, database on .env

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=database_name
    DB_USERNAME=root
    DB_PASSWORD=

Add on app/Providers/AppServiceProvider.php

    use Illuminate\Support\Facades\Schema;
    
    public function boot()
    {
        Schema::defaultStringLength(191);
    }

Run php artisan migrate