This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Description: To automatically run Laravel Sail on any Laravel project without having to specify the ./vendor/bin/sail path each time, you can create a simple shell script or alias. This will allow you to start Sail with a single command. Here’s how you can do it: | |
This instruction was made on Windows 11 Version 23H2 WSL2 Ubuntu22.04 | |
0. Begin | |
1. Create sail file inside /usr/local/bin | |
$ sudo touch sail |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* NOTE: This is a jQuery code used withing Blunova websites {GetAJob|CB|Docreko|OrderPayroll...} | |
* Place this code inside WP active themes js folder | |
*/ | |
/** | |
* Tweak for Gravity Forms month name | |
* This will target all instance of date field month dropdown | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reference: https://shellcreeper.com/how-to-create-valid-ssl-in-localhost-for-xampp/ | |
1. Create folder named: `C:\xampp\apache\crt` | |
2. Create files and store those file inside the newly created folder. | |
2.1 cert.conf | |
2.2 make-cert.bat | |
3. Edit cert.conf and Run make-cert.bat | |
Change {{DOMAIN}} text using the domain we want to use, in this case site.test and save. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CODE INPUT: | |
Route::get('sample', function(){ | |
$date = '06-28-2021'; //@fromFormat" m-d-Y | |
$date2 = Carbon::createFromFormat('m-d-Y', $date)->format('Y-m-d'); //@toFormat" Y-m-d | |
return response()->json(['from:' => $date, 'to' => $date2]); | |
}); | |
RESULT: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ($file = $request->file('inputFieldNameOfTypeFile')) { | |
$extension = $file->getClientOriginalExtension(); | |
$filename = 'customFilename'.'.'.$extension; | |
$courier->tblColumn = Storage::putFileAs($foldername, $file, $filename); // return file absolute path only not the full url | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To make Postman work with POST/PUT requests... | |
https://laravel.com/docs/5.2/routing#csrf-x-csrf-token | |
In addition to checking for the CSRF token as a POST parameter, the Laravel VerifyCsrfToken middleware will also check for the X-CSRF-TOKEN request header. | |
1. Store the token in a "meta" tag at the top of your root view file (layouts/app.blade.php)... | |
<meta name="csrf-token" content="{{ csrf_token() }}"> | |
** If using jQuery, you can now instruct it to include the token in all request headers. | |
$.ajaxSetup({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Example: Uploading file to specific customer of a given ID. | |
$foldername = 'customers/customer-'.$customer->id; | |
$base64_image = $request->input('field_name'); // Image is sent as Base64 | |
// Currently accepts image only | |
if (preg_match('/^data:image\/(\w+);base64,/', $base64_image)) { | |
$data = substr($base64_image, strpos($base64_image, ',') + 1); | |
$extension = getFileExtension($base64_image); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Geocode function for the origin location | |
function GoogleGeocode() { | |
geocoder = new google.maps.Geocoder(); | |
this.geocode = function(address, callbackFunction) { | |
geocoder.geocode( { 'address': address}, function(results, status) { | |
if (status == google.maps.GeocoderStatus.OK) { | |
var result = {}; | |
result.latitude = results[0].geometry.location.lat(); | |
result.longitude = results[0].geometry.location.lng(); | |
callbackFunction(result); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\Auth; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Foundation\Auth\AuthenticatesUsers; | |
use Illuminate\Http\Request; | |
class LoginController extends Controller |
NewerOlder