Update to Laravel 8.x

This commit is contained in:
Tyler
2020-12-21 03:00:51 -05:00
parent d8e3abac44
commit c73705a3cb
5 changed files with 310 additions and 175 deletions

View File

@ -2,6 +2,7 @@
namespace App\Providers;
use Illuminate\Pagination\Paginator;
use Schema;
use Illuminate\Support\ServiceProvider;
@ -13,6 +14,7 @@ class AppServiceProvider extends ServiceProvider {
*/
public function boot() {
Schema::defaultStringLength(191);
Paginator::useBootstrap();
}
/**