From 3a62cfb4fe903b8a36bdbd56d2b4013ddb8d62d2 Mon Sep 17 00:00:00 2001 From: Jess Archer Date: Thu, 11 Mar 2021 00:12:57 +1000 Subject: [PATCH 1/7] Add language for prohibited_if and prohibited_unless validation rules (#5557) --- resources/lang/en/validation.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 9a8dfcf8..0f861e32 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -104,6 +104,8 @@ return [ 'required_with_all' => 'The :attribute field is required when :values are present.', 'required_without' => 'The :attribute field is required when :values is not present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', + 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'same' => 'The :attribute and :other must match.', 'size' => [ 'numeric' => 'The :attribute must be :size.', From 89b15441a92aa615de9198c54b5d973aa6b374e5 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Thu, 11 Mar 2021 01:13:17 +1100 Subject: [PATCH 2/7] add date facade alias (#5556) --- config/app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/app.php b/config/app.php index 2a2f0ebe..f572b646 100644 --- a/config/app.php +++ b/config/app.php @@ -201,6 +201,7 @@ return [ 'Config' => Illuminate\Support\Facades\Config::class, 'Cookie' => Illuminate\Support\Facades\Cookie::class, 'Crypt' => Illuminate\Support\Facades\Crypt::class, + 'Date' => Illuminate\Support\Facades\Date::class, 'DB' => Illuminate\Support\Facades\DB::class, 'Eloquent' => Illuminate\Database\Eloquent\Model::class, 'Event' => Illuminate\Support\Facades\Event::class, From 177e05beec2d1e35b48baad59441050644eecd2c Mon Sep 17 00:00:00 2001 From: Jesper Noordsij <45041769+jnoordsij@users.noreply.github.com> Date: Wed, 10 Mar 2021 15:52:57 +0100 Subject: [PATCH 3/7] Add log level config value to stderr channel (#5558) --- config/logging.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/logging.php b/config/logging.php index 6aa77fe2..1aa06aa3 100644 --- a/config/logging.php +++ b/config/logging.php @@ -74,6 +74,7 @@ return [ 'stderr' => [ 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), 'handler' => StreamHandler::class, 'formatter' => env('LOG_STDERR_FORMATTER'), 'with' => [ From 471195d743de883af0c239c46553da89179824b5 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 12 Mar 2021 14:55:27 +0100 Subject: [PATCH 4/7] Fix footer on mobile (#5561) --- resources/views/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index f8ba9e21..b1905c92 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -21,7 +21,7 @@ -
+
@if (Route::has('login'))