-
Modify: composer.json to use php 5.6.4 and laravel 5.3.*
-
Modify: config/app.php
- Add notification provider:
Illuminate\Notifications\NotificationServiceProvider::class,
, - Add notification facade alias:
'Notification' => Illuminate\Support\Facades\Notification::class,
- Add notification provider:
-
Modify:
app/Http/Kernel.php
- replace can line with:
'can' => \Illuminate\Auth\Middleware\Authorize::class,
- and
\Illuminate\Routing\Middleware\SubstituteBindings::class,
to web middleware, - add
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
to$routeMiddleWare
, - add
'bindings',
toapi
- replace can line with:
-
Modify:
app/Http/Controllers/Controller.php
- Remove
AuthorizesResources
on two lines - https://github.com/laravel/laravel/blob/master/app/Http/Controllers/Controller.php
- Remove
-
Modify:
app/Providers/EventServiceProvider.php
-
Modify:
app/Providers/RouteServiceProvider.php
-
Run:
composer update
-
New blade directive syntax
Something::show(array$value);
toSomething::show([$value]);
- Tag
- Media
- Setting
Last active
September 19, 2016 18:24
-
-
Save nWidart/bd36dffb16c0f6df0fa441634af52b78 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment