migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace Modules\Frontend\Http\Requests\AboutUs;
use Illuminate\Foundation\Http\FormRequest;
class AboutUsStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string',
'description' => 'nullable|string',
'image' => 'nullable|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,28 @@
<?php
namespace Modules\Frontend\Http\Requests\AboutUs;
use Illuminate\Foundation\Http\FormRequest;
class AboutUsUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string',
'description' => 'nullable|string',
'image' => 'nullable|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,29 @@
<?php
namespace Modules\Frontend\Http\Requests\AcademicImage;
use Illuminate\Foundation\Http\FormRequest;
class AcademicImageStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'heading' => 'nullable|string|max:191',
'description' => 'nullable|string|max:255',
'image' => 'required|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,29 @@
<?php
namespace Modules\Frontend\Http\Requests\AcademicImage;
use Illuminate\Foundation\Http\FormRequest;
class AcademicImageUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'heading' => 'nullable|string|max:191',
'description' => 'nullable|string|max:255',
'image' => 'required|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace Modules\Frontend\Http\Requests\Banner;
use Illuminate\Foundation\Http\FormRequest;
class BannerStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'description' => 'nullable|string|max:255',
'button_name' => 'nullable|string|max:20',
'button_link' => 'nullable|string|max:100',
'image' => 'required|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace Modules\Frontend\Http\Requests\Banner;
use Illuminate\Foundation\Http\FormRequest;
class BannerUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'description' => 'nullable|string|max:255',
'button_name' => 'nullable|string|max:20',
'button_link' => 'nullable|string|max:100',
'image' => 'nullable|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,24 @@
<?php
namespace Modules\Frontend\Http\Requests\CMSSection;
use Illuminate\Foundation\Http\FormRequest;
class CMSSectionStoreRequest extends FormRequest
{
public function rules(): array
{
return [
'name' => ['required', 'string', 'max:100'],
'title' => ['nullable', 'string', 'max:200'],
'description' => ['nullable', 'string'],
'bg_image' => ['nullable', 'image', 'mimes:png,jpg,jpeg,webp', 'max:4096'],
'serial' => ['required', 'integer', 'min:1'], // used for drag-drop order
];
}
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,24 @@
<?php
namespace Modules\Frontend\Http\Requests\CMSSection;
use Illuminate\Foundation\Http\FormRequest;
class CMSSectionUpdateRequest extends FormRequest
{
public function rules(): array
{
return [
'name' => ['required', 'string', 'max:100'],
'title' => ['nullable', 'string', 'max:200'],
'description' => ['nullable', 'string'],
'bg_image' => ['nullable', 'image', 'mimes:png,jpg,jpeg,webp', 'max:4096'],
'serial' => ['required', 'integer', 'min:1'], // used for drag-drop order
];
}
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,29 @@
<?php
namespace Modules\Frontend\Http\Requests\Contact;
use Illuminate\Foundation\Http\FormRequest;
class ContactStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'email' => 'required|string|email|max:191',
'name' => 'nullable|string|max:191',
'phone' => 'nullable|string|max:255',
'message' => 'nullable|string|max:191',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,39 @@
<?php
namespace Modules\Frontend\Http\Requests\Coupon;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class CouponStoreRequest extends FormRequest
{
public function rules(): array
{
return [
'name' => ['required', 'string', 'max:100'],
'added_by' => 'nullable|string|max:255',
'discount_type' => ['required', Rule::in(['fixed', 'percentage', 'free_delivery'])],
'coupon_type' => ['required', Rule::in(['restaurant', 'hotel', 'both'])],
'amount' => [
'required_if:discount_type,fixed,percentage',
'nullable',
'numeric',
'min:0',
'max:1000000', // optional upper limit
],
'valid_from' => 'nullable|date|before_or_equal:valid_to',
'valid_to' => 'nullable|date|after_or_equal:valid_from',
'usage_limit' => 'nullable|integer|min:0',
'max_uses_per_customer' => 'nullable|integer|min:0',
'min_order_amount' => 'nullable|numeric|min:0',
'image' => 'nullable',
'source' => 'nullable|string|max:255',
'status' => 'nullable|integer|in:0,1', // 1=Active, 0=Inactive
];
}
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,39 @@
<?php
namespace Modules\Frontend\Http\Requests\Coupon;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class CouponUpdateRequest extends FormRequest
{
public function rules(): array
{
return [
'name' => ['required', 'string', 'max:100'],
'added_by' => 'nullable|string|max:255',
'discount_type' => ['required', Rule::in(['fixed', 'percentage', 'free_delivery'])],
'coupon_type' => ['required', Rule::in(['restaurant', 'hotel', 'both'])],
'amount' => [
'required_if:discount_type,fixed,percentage',
'nullable',
'numeric',
'min:0',
'max:1000000', // optional upper limit
],
'valid_from' => 'nullable|date|before_or_equal:valid_to',
'valid_to' => 'nullable|date|after_or_equal:valid_from',
'usage_limit' => 'nullable|integer|min:0',
'max_uses_per_customer' => 'nullable|integer|min:0',
'min_order_amount' => 'nullable|numeric|min:0',
'image' => 'nullable',
'source' => 'nullable|string|max:255',
'status' => 'nullable|integer|in:0,1', // 1=Active, 0=Inactive
];
}
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,27 @@
<?php
namespace Modules\Frontend\Http\Requests\Faq;
use Illuminate\Foundation\Http\FormRequest;
class FaqStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'question' => 'required|string|max:191',
'answer' => 'required|string|max:500',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,27 @@
<?php
namespace Modules\Frontend\Http\Requests\Faq;
use Illuminate\Foundation\Http\FormRequest;
class FaqUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'question' => 'required|string|max:191',
'answer' => 'required|string|max:500',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,34 @@
<?php
namespace Modules\Frontend\Http\Requests\MobileAppSection;
use Illuminate\Foundation\Http\FormRequest;
class MobileAppSectionStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:255',
'description' => 'nullable|string|max:1000',
'heading' => 'nullable|string',
'string' => 'nullable|string',
'feature_one' => 'nullable|string',
'feature_two' => 'nullable|string',
'feature_three' => 'nullable|string',
'play_store_link' => 'nullable|string',
'app_store_link' => 'nullable|string',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,34 @@
<?php
namespace Modules\Frontend\Http\Requests\MobileAppSection;
use Illuminate\Foundation\Http\FormRequest;
class MobileAppSectionUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:255',
'description' => 'nullable|string|max:1000',
'heading' => 'nullable|string',
'string' => 'nullable|string',
'feature_one' => 'nullable|string',
'feature_two' => 'nullable|string',
'feature_three' => 'nullable|string',
'play_store_link' => 'nullable|string',
'app_store_link' => 'nullable|string',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,37 @@
<?php
namespace Modules\Frontend\Http\Requests\Onboarding;
use Illuminate\Foundation\Http\FormRequest;
class OnboardingStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'restaurant_name' => 'required|string|max:100',
'restaurant_email' => 'required|email|max:255|unique:restaurants,email,except,id',
'restaurant_phone' => 'required|string|max:15|unique:restaurants,phone,except,id',
'restaurant_domain' => 'nullable|string|max:100|unique:restaurants,domain,except,id',
'restaurant_type' => 'nullable|string|max:100',
'restaurant_address' => 'nullable|string|max:100',
'restaurant_logo' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048',
'name' => 'required|string|max:100',
'email' => 'required|email|max:255|unique:users,email,except,id',
'phone' => 'required|string|max:50',
'password' => 'required|string|min:6',
'avatar' => 'nullable|image|mimes:jpeg,png,jpg,gif|max:2048',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,27 @@
<?php
namespace Modules\Frontend\Http\Requests\Policy;
use Illuminate\Foundation\Http\FormRequest;
class PolicyStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'type' => 'required|string',
'description' => 'required|string',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,27 @@
<?php
namespace Modules\Frontend\Http\Requests\Policy;
use Illuminate\Foundation\Http\FormRequest;
class PolicyUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'type' => 'required|string',
'description' => 'required|string',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace Modules\Frontend\Http\Requests\ReadyToJoinUs;
use Illuminate\Foundation\Http\FormRequest;
class ReadyToJoinUsStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'description' => 'nullable|string|max:255',
'icon' => 'nullable|image',
'button_name' => 'nullable|string',
'button_link' => 'nullable|string',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace Modules\Frontend\Http\Requests\ReadyToJoinUs;
use Illuminate\Foundation\Http\FormRequest;
class ReadyToJoinUsUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'description' => 'nullable|string|max:255',
'icon' => 'nullable|image',
'button_name' => 'nullable|string',
'button_link' => 'nullable|string',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,32 @@
<?php
namespace Modules\Frontend\Http\Requests\Testimonial;
use Illuminate\Foundation\Http\FormRequest;
class TestimonialStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'name' => 'required|string|max:255',
'description' => 'required|string|max:1000',
'thumbnail_image' => 'nullable',
'video_url' => 'nullable|string|max:255',
'note' => 'nullable|string|max:500',
'ratting' => 'required',
'status' => 'nullable|in:0,1', // 1=Active, 2=Inactive
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,32 @@
<?php
namespace Modules\Frontend\Http\Requests\Testimonial;
use Illuminate\Foundation\Http\FormRequest;
class TestimonialUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'name' => 'required|string|max:255',
'description' => 'required|string|max:1000',
'thumbnail_image' => 'nullable',
'video_url' => 'nullable|string|max:255',
'note' => 'nullable|string|max:500',
'ratting' => 'required',
'status' => 'nullable|in:0,1', // 1=Active, 2=Inactive
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,28 @@
<?php
namespace Modules\Frontend\Http\Requests\WhyChooseUs;
use Illuminate\Foundation\Http\FormRequest;
class WhyChooseUsStoreRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'description' => 'nullable|string|max:255',
'icon' => 'nullable|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}

View File

@@ -0,0 +1,28 @@
<?php
namespace Modules\Frontend\Http\Requests\WhyChooseUs;
use Illuminate\Foundation\Http\FormRequest;
class WhyChooseUsUpdateRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'title' => 'required|string|max:191',
'description' => 'nullable|string|max:255',
'icon' => 'nullable|image',
];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}