全文検索:
- 29 Laravel Custom Validation
- ===== <code> resources/lang/ja/validation.php 'name' => 'The :attribute no valid name', 'attributes' => [ ... 'family_name_name' => 'ふりがな(せい)', </code> ===== カスタムバリデーションを利用 ===== <code> $request->validate([
- 16 Laravel コマンドラインアプリケーション
- sample/test.php > protected $signature = 'command:name'; ↓ protected $signature = 'command:test'; prote... code> public function handle() { $name = $this->argument("name"); $this->info("Hello $name"); } </code> ===== オプションを指定する場合 ===== オプション指定 protected $sig
- 26 Laravel FormBuilder
- php artisan make:form Forms/SongForm --fields="name:text, lyrics:textarea, publish:checkbox" <code|a... uildForm() { $this ->add('name', 'text') ->add('lyrics', 'textarea')... php> Route::any('song','SongsController@create')->name('song'); </code> ===== view追加 ===== <code|resou
- 27 Laravel Voyager
- songsになります。 resources/views/vendor/voyager/[slug-name] 以下にbrose.blade.phpとedit-add.blade.phpを置けばオーバライドさ... te::get('songs','Voyager\SongsController@index')->name('voyager.songs.index')->middleware('admin.user');... e::post('songs','Voyager\SongsController@index')->name('voyager.songs.index')->middleware('admin.user');
- 30 Laravel Mail
- ources/views/mail/MailSend.blade.php {{$content->name}} さんはじめまして。 テストメール </code> ===== 4.mailableクラスの... uminate\Support\Facades\Mail; $contents->name = $request->get('name'); Mail::to('to@hogehoge.net') ->bcc('bcc@hogehoge.net')
- 37 Laravel Config ge
- .php <?php return [ 'hogehoge' => [ 'name' => 'hoge', 'status' => 1, ] ]; >>> c... onfig('const2') => [ "hogehoge" => [ "name" => "hoge", "status" => 1, ], ] <
- 42 Laravel 認証機能
- rray */ protected $fillable = [ 'name', 'email', 'password', ]; /** * The... (); Route::get('/home', 'HomeController@index')->name('home'); </code> ===== app/Http/Controllers/Home
- 47 Laravelコマンドからコマンドヘルプを呼び出す
- 時に対象コマンドのヘルプが表示されます。 $this->call('help',['command_name'=>'コマンド名']) <code> protected $signature = 'comm... ult: $this->call('help',['command_name'=>'command:TestCommand']); exit;
- 12 Laravel
- new [--dev] [--5.2] [--] [<name>] 対応 <code> # yum install php-pecl-zip </code>
- 13 laravel-admin
- nt unsigned not null auto_increment primary key, `name` varchar(255) not null, `email` varchar(255) not
- 14 Laravel Model
- DB::table('test_tables')->insert([ 'name' => 'default_user', ]); </code> <code|da
- 22 Laravel-admin viewカスタマイズ
- f="{{ admin_base_path('/') }}"><b>{{config('admin.name')}}</b></a> ↓ 28 <a href="{{ admin_
- 43 Laravel APIトークン名(api_token)を変更
- 'auth']->extend('remember_token', function($app, $name, array $config) { return new MyTokenG