Category Laravel

Integrate SMS Sending Laravel

📩 How to Integrate an SMS Sending Service in Laravel using notify.lk SMS Gateway. In this tutorial, you’ll learn how to integrate a custom SMS sending service into your Laravel application. We’ll move an the sms folder to app/Services, create…

git Essentials

1. git init This command initializes a new Git repository locally in your current directory. It creates a new .git directory where all Git metadata and objects will be stored. This is the first command you run when you start…

MySQL not starting in XAMPP

MySQL may not start if its data files are corrupted. If MySQL was not shut down properly, it may cause issues on restart. 1) rename xampp\mysql\data => xampp\mysql\data_old 2) create new folder xampp\mysql\data 3) copy everything from xampp\mysql\backup to xampp\mysql\data…

Remove Public\index.php from URL using htaccess

Create root below two & update with below, index.php<?php/** * Laravel – A PHP Framework For Web Artisans * * @package Laravel * @author Taylor Otwell <taylor@laravel.com> */$uri = urldecode( parse_url($_SERVER[‘REQUEST_URI’], PHP_URL_PATH));// This file allows us to emulate Apache’s “mod_rewrite”…

Laravel Course

Please visit japura.lk for full course & details. Reference : At the end of the course you will create a web app look likes below, Day 1: Introduction to Laravel and Setup Day 2: Controllers and Views Day 3:…