Skip to content

Instantly share code, notes, and snippets.

View SapneshNaik's full-sized avatar
🎯
Focusing

Sapnesh Naik SapneshNaik

🎯
Focusing
View GitHub Profile
@SapneshNaik
SapneshNaik / homestead-manual-install.md
Created November 21, 2017 10:52 — forked from idecardo/homestead-manual-install.md
Laravel Homestead Manual Installation

Getting Started

Laravel Homestead is an official, pre-packaged Vagrant box that provides you a wonderful development environment without requiring you to install PHP, HHVM, a web server, and any other server software on your local machine. Read more...

Download

Download homestead box using this link:

@SapneshNaik
SapneshNaik / IND_money_format.php
Last active February 12, 2018 07:10
A php function to convert a number into Indian Number System format (also Indian Currency Format)
<?php
function IND_money_format($number){
$decimal = (string)($number - floor($number));
$money = floor($number);
$length = strlen($money);
$delimiter = '';
$money = strrev($money);
for($i=0;$i<$length;$i++){
if(( $i==3 || ($i>3 && ($i-1)%2==0) )&& $i!=$length){