herurahmat / laraton
The Laravel Skeleton.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 22
Type:project
Requires
- php: ^7.2
- fideloper/proxy: ^4.0
- laravel/framework: ^6.2
- laravel/tinker: ^1.0
- yajra/laravel-datatables-oracle: ~9.0
Requires (Dev)
- facade/ignition: ^1.4
- fzaninotto/faker: ^1.4
- mockery/mockery: ^1.0
- nunomaduro/collision: ^3.0
- phpunit/phpunit: ^8.0
- dev-master
- 1.1.x-dev
- 1.0.0
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/composer/guzzlehttp/psr7-1.8.5
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/tar-4.4.19
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/composer/league/flysystem-1.1.4
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/composer/laravel/framework-6.18.43
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/axios-0.21.1
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/composer/symfony/http-kernel-4.4.13
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
This package is auto-updated.
Last update: 2025-04-05 03:27:21 UTC
README
Skeleton/ Complete App Starter with Laravel
Developed by herurahmat
Environment
- PHP 7.2.10
- MySQL 8.0.16-Mysql Community
- Laravel 6.2
How to Implement
- Git Clone https://github.com/herurahmat/laraton.git
- Packagist
composer create-project herurahmat/laraton yourproject
- Run
composer install
- Copy
.env
file from.env.example
using commandcp .env.example .env
then make some configs in.env
file (please checkConfig .env
Section) - Make sure
DB_DATABASE
is set correctly in.env
file then runphp artisan migrate
- Run php artisan db:seed
- If migration is failed, please run
composer dump-autoload
first and remove any table(s) in database before execute migrate again - Default admin user is
admin
with passwordadmin
- Make Controller, php artisan make:controller . Code to call view :
$data=my_dummy_data(); return laraview('my.view',['title'=>'My Title'],$data);
- In view blade. You not create script for template again. It's Automatically !!
- Please show app\Helpers for another cheating script !!
How to Update
cd you-project-folder
git pull origin master
Documentation
https://github.com/herurahmat/laraton-doc
Modules
- Login
- Template
- Helper
- Avatar
- Thumbnail Image Upload
- Profile
- User Manager
- Usergroup Manager
- Application Configuration
- Company Configuration
- Logo & Favicon
- Secure (XSS Clean)