herurahmat/laraton

The Laravel Skeleton.


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 command cp .env.example .env then make some configs in .env file (please check Config .env Section)
  • Make sure DB_DATABASE is set correctly in .env file then run php 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 password admin
  • 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)