LaravelPackages.net
Acme Inc.
Toggle sidebar
anamcoollzz/stisla

:description

209
0
About anamcoollzz/stisla

anamcoollzz/stisla is a Laravel package for :description. It currently has 0 GitHub stars and 209 downloads on Packagist. Install it with composer require anamcoollzz/stisla. Discover more Laravel packages by anamcoollzz or browse all Laravel packages to compare alternatives.

Last updated

Stisla

Latest Version on Packagist Total Downloads Build Status StyleCI

This is where your description should go. Take a look at contributing.md to see a to do list.

Installation

Via Composer

$ composer require anamcoollzz/stisla

Usage

Change log

Please see the changelog for more information on what has changed recently.

Step by step

  • Install fresh laravel
  • Setup your database configuration first in .env
  • Remove User.php in app folder
  • Remove all default migrations in database/migrations folder
  • Remove all default seeder in database/seeds folder
  • Remove views folder in resources
  • Publish all stisla component with below
$ php artisan vendor:publish --tag=stisla.all 
  • run dump with
$ composer dump-autoload 
  • run
$ php artisan migrate --seed 

Add to your web.php in routes folder

Route::get('/masuk', 'Stisla\AutentikasiController@formMasuk')->name('masuk');
Route::post('/masuk', 'Stisla\AutentikasiController@masuk');

Route::middleware(\App\Http\Middleware\Masuk::class)->group(function(){

	Route::get('/', 'Stisla\AutentikasiController@dashboard')->name('dashboard');
	Route::get('/profil', 'Stisla\AutentikasiController@profil')->name('profil');
	Route::put('/profil', 'Stisla\AutentikasiController@perbaruiProfil')->name('profil.update');
	Route::get('/keluar', 'Stisla\AutentikasiController@keluar')->name('keluar');

});

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

license. Please see the license file for more information.

Star History Chart