zulfajuniadi / laravel-base
The Laravel Framework.
Installs: 352
Dependents: 0
Suggesters: 0
Security: 0
Stars: 30
Watchers: 12
Forks: 15
Open Issues: 0
Type:project
Requires
- php: >=5.5.9
- anahkiasen/former: ^4.0
- cviebrock/eloquent-sluggable: ^3.1
- doctrine/dbal: ^2.5
- irazasyed/laravel-identicon: ~1.1
- laravel/framework: 5.1.*
- venturecraft/revisionable: ^1.23
- yajra/laravel-datatables-oracle: ~5.0
- yetanotherape/diff-match-patch: ^1.0
- zizaco/entrust: dev-laravel-5
Requires (Dev)
- fzaninotto/faker: ~1.4
- mockery/mockery: 0.9.*
- phpspec/phpspec: ~2.1
- phpunit/phpunit: ~4.0
README
#Laravel Base
Quickly scaffold out a fully functional app within seconds. Come on, be lazy.
Features
- Role Based Access Control (RBAC) :- Fully functioning role based access control with permission level granularity.
- Policy & Validation Enforcement :- Set policies and validation rules per each controller route
- Audit Logs :- Changes to models are stored into the database for audit purposes
- Auth Logs :- Login / Logout / Register actions are logged for audit purposes
- Menu Manager :- Fully integrated with RBAC to ensure only privileged users can see and access the links.
- Datatables :- Fully-ajaxified datatables that ensures the best user experience.
- User management :- Full control of you application's users including changing passwords, deactivating, blacklisting and login as user
- Authentication :- Login, Logout, Registration, Forgot Password - your usual stuff for authentication
- Translation :- Easy support for multiple language
- Module based loading :- All routes and resources are loaded via the ServiceProvider. Don't want a module? Remove the service provider.
- Scaffold Generator :- Pure joy from all of the above with just one command
Getting Started
composer create-project zulfajuniadi/laravel-base projectfolder
whereprojectfolder
is the folder you want to create your app.- Create your database
- Change directory to projectfolder
cd projectfolder
php artisan app:install
php artisan migrate --seed
php artisan serve
(This will run a development server on port 8000)
Default username and password: admin@example.com / admin