Skip to content

Instantly share code, notes, and snippets.

@srockstyle
Created November 13, 2017 10:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srockstyle/aad064e1796be205a85b5bef40b85211 to your computer and use it in GitHub Desktop.
Save srockstyle/aad064e1796be205a85b5bef40b85211 to your computer and use it in GitHub Desktop.
【RailsユーザのためのPHP/Laravel】form_for的なのを使いたい ref: https://qiita.com/srockstyle/items/ee8f63d93b871424ccbf
composer require laravelcollective/html
return [
'providers' => [
// ...
'Collective\Html\HtmlServiceProvider',
],
'aliases' => [
// ...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
],
{!! Form::label('title', 'Title:') !!}
{!! Form::text('title',[わたしたいパラメータのvalue。なければnull], ['class' => '[クラス名]']) !!}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment