vavepl / luya-module-portfolio
Portfolio.
Installs: 111
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
Type:luya-module
Requires
- luyadev/luya-core: ~1.0.0
This package is auto-updated.
Last update: 2025-03-27 03:08:40 UTC
README
A very easy to use Portfolio Module to show latest work or a collection of data.
Installation
Add the Package to your composer file:
composer require vavepl/luya-module-portfolio
Add the portfolio module to the modules section your config:
return [ 'modules' => [ // ... 'portfolio' => [ 'class' => 'vavepl\portfolio\frontend\Module', 'useAppViewPath' => false, // When disabled the predefined views are used, otherwise you have to create your own views. ], 'portfolioadmin' => 'vavepl\portfolio\admin\Module', // ... ], ];
Initialization
After successfully installation and configuration run the migrate, import and setup command to initialize the module in your project.
1.) Migrate your database.
./vendor/bin/luya migrate
2.) Import the module and migrations into your LUYA project.
./vendor/bin/luya import