tritiyo / material
Material manage on Material Module
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
This package is auto-updated.
Last update: 2024-10-25 07:52:19 UTC
README
Material Management under Biz Boss
manage your materials easily
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