From 926751d2928276928d2db4ee61800fd3cabc2e1e Mon Sep 17 00:00:00 2001 From: Ben Rutland Date: Sun, 21 Feb 2021 13:40:07 +0000 Subject: [PATCH 1/3] added alidation provider --- functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/functions.php b/functions.php index 4dfc9c0..53206f1 100644 --- a/functions.php +++ b/functions.php @@ -70,6 +70,7 @@ $app->register(Radiate\Auth\AuthServiceProvider::class); $app->register(Radiate\Mail\MailServiceProvider::class); $app->register(Radiate\Routing\RoutingServiceProvider::class); +$app->register(Radiate\Validation\ValidationServiceProvider::class); $app->register(Radiate\View\ViewServiceProvider::class); $app->register(Radiate\WordPress\WordPressServiceProvider::class); From 70650dc1d434afc9afb1a94e06524e39dfd301eb Mon Sep 17 00:00:00 2001 From: Ben Rutland Date: Sun, 21 Feb 2021 15:56:19 +0000 Subject: [PATCH 2/3] added form request provider --- functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/functions.php b/functions.php index 53206f1..af87209 100644 --- a/functions.php +++ b/functions.php @@ -12,6 +12,8 @@ * */ +use Radiate\Http\Request; + require __DIR__ . '/vendor/autoload.php'; @@ -68,6 +70,7 @@ */ $app->register(Radiate\Auth\AuthServiceProvider::class); +$app->register(Radiate\Foundation\Providers\FormRequestServiceProvider::class); $app->register(Radiate\Mail\MailServiceProvider::class); $app->register(Radiate\Routing\RoutingServiceProvider::class); $app->register(Radiate\Validation\ValidationServiceProvider::class); From 77399862970e56097bc91710a835e0e1331a9475 Mon Sep 17 00:00:00 2001 From: Ben Rutland Date: Sun, 21 Feb 2021 16:00:47 +0000 Subject: [PATCH 3/3] Update functions.php --- functions.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/functions.php b/functions.php index 98f52ce..b484700 100644 --- a/functions.php +++ b/functions.php @@ -12,8 +12,6 @@ * */ -use Radiate\Http\Request; - require __DIR__ . '/vendor/autoload.php';