Added Methods, routes and Views for VeranstaltungController

This commit is contained in:
chrosey
2017-06-14 23:44:54 +02:00
parent 46e092f04f
commit 1deb0f59fc
9 changed files with 195 additions and 15 deletions
+4
View File
@@ -4,6 +4,7 @@ namespace App\Providers;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
use Carbon\Carbon;
class AppServiceProvider extends ServiceProvider
{
@@ -15,6 +16,9 @@ class AppServiceProvider extends ServiceProvider
public function boot()
{
Schema::defaultStringLength(191);
date_default_timezone_set("Europe/Berlin");
setlocale(LC_TIME, "German");
Carbon::setLocale('de');
}
/**