| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Providers;
- use App\Http\Controllers\Controller;
- use Illuminate\Queue\Events\JobFailed;
- use Illuminate\Support\Facades\Queue;
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Support\Facades\View;
- use Illuminate\Support\ServiceProvider;
- use Ramsey\Uuid\Uuid;
- use Validator;
- class AppServiceProvider extends ServiceProvider
- {
- /**
- * Register any application services.
- *
- * @return void
- */
- public function register()
- {
- //
- }
- /**
- * Bootstrap any application services.
- *
- * @return void
- */
- public function boot()
- {
- //
- Schema::defaultStringLength(191);
- Queue::failing(function (JobFailed $event) {
- (new Controller())->log(__METHOD__,'EventError_',json_encode($event));
- });
- //扩展身份证验证规则
- Validator::extend('identity_cards', function($attribute, $value, $parameters) {
- return preg_match('/(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}$)/', $value);
- });
- View::share('pageUuid',Uuid::uuid4());
- }
- }
|