Package Data | |
---|---|
Maintainer Username: | Sukohi |
Maintainer Contact: | capilano.sukohi@gmail.com (Sukohi) |
Package Create Date: | 2015-03-10 |
Package Last Update: | 2018-04-11 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 15:01:25 |
Package Statistics | |
---|---|
Total Downloads: | 72 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
PHP class that mainly developed for Laravel to sign in to user page easily in development environment.
(This is for Laravel 5+. For Laravel 4.2)
Execute composer command.
composer require sukohi/postern:2.*
If your Laravel's version is 5.5+, the installation is done!
Register the service provider in app.php
'providers' => [
...Others...,
Sukohi\Postern\PosternServiceProvider::class,
]
Also alias
'aliases' => [
...Others...,
'Postern' => Sukohi\Postern\Facades\Postern::class
]
Minimal Way (in View)
<form method="POST" action="http://example.com" name="form_name">
<input name="input_email_name" type="text">
<input name="input_password_name" type="password">
</form>
{!! \Postern::form('form_name')
->credentials('Link Text', ['input_email_name' => 'admin@example.com', 'input_password_name' => 'admin'])
->render()
!!}
Other Way (in View)
{!! \Postern::form('form_name')
->credentials('Admin Login', ['email' => 'admin@example.com', 'password' => 'admin'])
->credentials('User Login', ['email' => 'user@example.com', 'password' => 'user'])
->localOnly($boolean = true) // optional
->render()
!!}
This package is licensed under the MIT License.
Copyright 2015 Sukohi Kuhoh