diff --git a/app/Http/Requests/SectionRequest.php b/app/Http/Requests/SectionRequest.php new file mode 100644 index 00000000..09877523 --- /dev/null +++ b/app/Http/Requests/SectionRequest.php @@ -0,0 +1,56 @@ +check(); + } + + /** + * Get the validation rules that apply to the request. + * + * @return array + */ + public function rules() + { + return [ + // 'name' => 'required|min:5|max:255' + ]; + } + + /** + * Get the validation attributes that apply to the request. + * + * @return array + */ + public function attributes() + { + return [ + // + ]; + } + + /** + * Get the validation messages that apply to the request. + * + * @return array + */ + public function messages() + { + return [ + // + ]; + } +} diff --git a/app/Http/Requests/VenueRequest.php b/app/Http/Requests/VenueRequest.php new file mode 100644 index 00000000..95b4e28c --- /dev/null +++ b/app/Http/Requests/VenueRequest.php @@ -0,0 +1,56 @@ +check(); + } + + /** + * Get the validation rules that apply to the request. + * + * @return array + */ + public function rules() + { + return [ + // 'name' => 'required|min:5|max:255' + ]; + } + + /** + * Get the validation attributes that apply to the request. + * + * @return array + */ + public function attributes() + { + return [ + // + ]; + } + + /** + * Get the validation messages that apply to the request. + * + * @return array + */ + public function messages() + { + return [ + // + ]; + } +} diff --git a/resources/views/Bilettm/ViewEvent/SeatsPage.blade.php b/resources/views/Bilettm/ViewEvent/SeatsPage.blade.php index 39f96db5..cd593165 100644 --- a/resources/views/Bilettm/ViewEvent/SeatsPage.blade.php +++ b/resources/views/Bilettm/ViewEvent/SeatsPage.blade.php @@ -44,7 +44,7 @@ @include('Bilettm.ViewEvent.Partials.Seats')
-
You Have Selected 4 Standard Seats
+
You Have Selected 4 Seats
Your Seats:
@csrf