
Credit card validation in laravel
Credit card validation in laravel
In this session, we are going to try to solve the "Credit card validation in laravel" puzzle by using the computer language.
Sometimes you have to store credit card details. You can validate the credit card details before storing in the database. Here are some validation rules which you can use to validate the credit card details in laravel.-
Validation rules for credit card using laravel-validation-rules/credit-card package in laravel
//Install package laravel-validation-rules/credit-card using composer command composer require laravel-validation-rules/credit-card //Create the form request php artisan make:request CardVerificationRequest //app/Http/Requests/CardVerificationRequest.php //Import package (LVR\CreditCard) before the class (CardVerificationRequest) definition and after the namespace use LVR\CreditCard\CardCvc; use LVR\CreditCard\CardNumber; use LVR\CreditCard\CardExpirationYear; use LVR\CreditCard\CardExpirationMonth; //Write rules and error message for validation public function authorize() { return true; } public function rules() { return [ 'card_number' => ['required', 'unique:cards,cardNo', new CardNumber], 'expiration_year' => ['required', new CardExpirationYear($this->get('expiration_month'))], 'expiration_month' => ['required', new CardExpirationMonth($this->get('expiration_year'))], 'cvc' => ['required', new CardCvc($this->get('card_number'))] ]; } public function messages() { return [ 'card_number.required' => 'The card number is compulsory' ]; } //Type-hint the CardVerificationRequest in our Controller’s store method //Import cardVerificationRequest in controller use App\Http\Requests\CardVerificationRequest; //Store method to store the card with CardVerificationRequest</span></p> public function store(CardVerificationRequest $request) { $validatedData = $request->validated(); $newCard = new Card; $newCard->cardNo = $validatedData["card_number"]; $newCard->cardExpiringMonth = $validatedData["expiration_month"]; $newCard->cardExpiringYear = $validatedData["expiration_year"]; $newCard->cardCVV = $validatedData["cvc"]; $newCard->save();
You can use laravel-validation-rules/credit-card package to validate credit card details in laravel. You can create a form request and use the controller's method with type hint to validate the provided credit card information by the user.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- Show old value while editing the form in Laravel
- Convert input array to comma-separated string in laravel controller
- Get current month records in laravel 7/8
- How to pass link from controller to view in laravel on ajax call
- Seed database using SQL file in Laravel
- Trying to get property 'title' of non-object
- How to get list of all views file in laravel
- How to get tomorrow and yesterday date in laravel
- Return view from route Laravel
- If no route matched route::fallback in laravel
- Attempt to read property "avatar" on null in Laravel
- Get 30 days older records from table in laravel
- Call to undefined relationship [user] on model [App\Models\Post]
- Array to string conversion laravel Controller
- Create record with unique slug in laravel
- How to show data by ID in laravel?
- Target class [HomeController] does not exist
- Pagination in laravel
- Display data in table using foreach in Laravel
- How to get last year records count with month wise in Laravel
- How to get single column value in laravel
- Validation for multiple forms on same page in laravel
- How to get last record from object collection in laravel
- How to restore deleted records in laravel
- Method chaining in Laravel