n-singularity/general-module-foundation

1.1.2 2021-08-15 06:33 UTC

This package is auto-updated.

Last update: 2024-04-29 04:27:15 UTC


README

Require this package

composer require doctrine/cache:"1.11"
composer require laravel-doctrine/orm doctrine/inflector:"^1.4|^2.0"

Use Composer to install the package:

    $ COMPOSER_MEMORY_LIMIT=-1 composer require n-singularity/general-module-foundation

AUTH MODUL

Add To config/app.php

    Nsingularity\GeneralModule\Foundation\GeneralFoundationServiceProvider::class,
    LaravelDoctrine\ORM\DoctrineServiceProvider::class,
    LaravelDoctrine\Migrations\MigrationsServiceProvider::class,
    LaravelDoctrine\Extensions\GedmoExtensionsServiceProvider::class,
    LaravelDoctrine\Extensions\BeberleiExtensionsServiceProvider::class,

Execute this command

    php artisan vendor:publish --tag=ns-module-foundation --force

LOCATION MODUL

Add To config/app.php

    Nsingularity\GeneralModule\Foundation\LocationFoundationServiceProvider::class,

Execute this command

    php artisan vendor:publish --tag=ns-module-location-foundation --force

Register Seeder at app/databse/seeds/DatabaseSeeder.php

    $this->call(LocationSubdivisionSeeder::class);