admin
-
International DateTime(다국어 지원)Laravel/Nova 2020. 10. 15. 20:18
- 패키지 설치 composer require techouse/intl-date-time novapackages.com/packages/techouse/intl-date-time International DateTime Apply localisation to Laravel Nova's default DateTime field that currently doesn't support localisation out of the box. novapackages.com IntlDateTime::make(__('opened_at'), 'opened_at')->sortable()->locale("ko"),
-
Laravel Nova 설치Laravel/Nova 2020. 10. 12. 00:30
* 기존 깔아놓은 nova 프로젝트 통째로 복붙으로 옮기면 안될 때 있음. 그럴땐 vendor/laravel/nova까지 잘 옮겨졌는지 체크 - releases에서 원하는 버전 다운로드 후 프로젝트 루트경로에 nova라는 폴더명으로 바꿔서 삽입하기 - composer.json 세팅 "require": { ..., "laravel/nova": "*" }, "repositories": [ { "type": "path", "url": "./nova" } ], composer update php artisan nova:install php artisan migrate - app.php에 다음 내용 추가 'providers' => [ ..., \App\Providers\NovaServiceProvider::cla..