tritiyo/material

Material manage on Material Module

v1.0.0 2021-02-23 22:20 UTC

This package is auto-updated.

Last update: 2024-04-25 06:45:19 UTC


README

Material Management under Biz Boss

manage your materials easily

Build Status

Why you will choose it

Material Management is a mobile-ready

Who develop

Author: Noushad Nipun & Samrat Khan

Installation

Material Management requires Laravel v8+ to run and PHP v7.3+

Via Composer

composer require tritiyo/material

Extra Composer Entry

"autoload-dev": {
    "psr-4": {
        "Tritiyo\\Material\\":"vendor/tritiyo/material/src/"
    }
},

Register service provider to app.php under config directory

'providers' => [
    Tritiyo\Material\MaterialServiceProvider::class,
]

Migration for material table

php artisan migrate

Seeds for route data to DatabaseSeeder.php under database/seeders directory

public function run()
{
    $this->call(MaterialModuleSeeder::class)
}

Run seed

php artisan db:seed