LaravelBook\Laravel4Powerpack\Form::openSecure PHP Метод

openSecure() публичный Метод

Open a HTML form with a HTTPS action URI.
public openSecure ( string $action = null, string $method = 'POST', array $attributes = [] ) : string
$action string
$method string
$attributes array
Результат string
    public function openSecure($action = null, $method = 'POST', $attributes = array())
    {
        return $this->open($action, $method, $attributes, true);
    }