Skip to content

How to use PHP NumberFormatter to convert numbers to words

Enable intl extension in PHP.ini (Remove the semicolon before) extension=intl Run composer update to use the PHP NumberFormatter ...

Details

How to get AppServer log & System Debug log from QAD

AppServer Log: Go to System Monitor menu To the left, there will be two navigation sets; Client & ...

Details

Laravel: How to implement Email verification on Signup

To configure your Laravel application for sending emails, you can update the MAIL_HOST value in your .env file. ...

Details

Some useful MySQL queries for ready reference

Finding non-unique values in a column: SELECT col_name, COUNT(col_name) FROM table_name GROUP BY col_name HAVING COUNT(col_name) > 1; ...

Details

Laravel-Carbon: How to change timezone

1. Open the AppServiceProvider class in app/Providers/AppServiceProvider.php. 2. Add the following code in the boot method: use Illuminate\Support\Facades\Config; ...

Details

Basic & Advanced Concepts on Laravel Database Migrations & Models

Creating Migration File: php artisan make:migration create_[table_name]_table –table=[table_name] Example: php artisan make:migration create_users_table –table=users Migration File for Updating ...

Details

How to prevent form re submission in Laravel

Server-Side Solution: In your controller’s method (that handles input data in a form i.e; Create/Preview), you can generate ...

Details

Laravel Validation – use multiple Form Requests for complex scenarios

Let’s assume we have website where we allow to create multiple types of user. For example we might ...

Details

Implementing Laravel Service-Repository pattern using Form Request

Putting all the business logic into the controller can be messy at times, specially when the project is ...

Details

How to integrate MySql database with Django?

Download & install latest available version XAMPP. Remember MySQL will integrate with Django only with MariaDB 10.4 or ...

Details