일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Laravel
- auth
- Python
- 인민공원
- 전자소송
- win32
- Sentinel
- 개인사업자
- 소액임금체불
- blockchain
- javascript
- Tutorial
- Java
- as후기
- 코로나19
- 홈택스
- 사업자계좌
- reactnative
- cartalyst
- 당사자표시정정신청서
- vue
- php
- 이더리움
- 체당금
- elasticSearch
- 보정명령
- Bootstrap
- Eclipse
- 코로나
- Blade
- Today
- Total
목록auth (2)
그냥 사는 이야기
Laravel 5.3 Sentinel - Registration Migration 수정 2014_07_02_230147_migration_cartalyst_sentinel.php Schema::create('users', function (Blueprint $table) { ... $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->string('location'); // 추가 $table->timestamps(); ... php artisan migrate:refresh Controller 생성 php artisan make:controller RegistrationController rout..
Laravel 5.3 Tutorial for Beginner - Sharing data with all Views 한개의 변수 공유 App/Providers/AppServiceProvider.php use View; ... public function boot() { View::share('myname', 'Renato'); } ... 그리고 View에서 아래처럼 추가하면 myname을 사용할 수 있다. home.blade.php Hello, {{ $myname }} Carbon 패키지 사용해 보기 나이(age) 정보를 share 변수로 등록해보는데 Carbon 패키지를 사용해 본다. App/Providers/AppServiceProvider.php use Carbon\Carbon; ... public ..