This file contains hidden or 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
| $thanas = array( | |
| array('id' => '1','created_by' => '1','updated_by' => '1','district_id' => '30','name' => 'Kotchandpur','created_at' => '2021-09-08 17:11:25','updated_at' => '2021-09-08 17:11:25'), | |
| array('id' => '2','created_by' => '1','updated_by' => '1','district_id' => '54','name' => 'Bhanga','created_at' => '2021-09-08 17:11:25','updated_at' => '2021-09-08 17:11:25'), | |
| array('id' => '3','created_by' => '1','updated_by' => '1','district_id' => '32','name' => 'Shah Mokhdum','created_at' => '2021-09-08 17:11:25','updated_at' => '2021-09-08 17:11:25'), | |
| array('id' => '4','created_by' => '1','updated_by' => '1','district_id' => '58','name' => 'Adabar','created_at' => '2021-09-08 17:11:25','updated_at' => '2021-09-08 17:11:25'), | |
| array('id' => '5','created_by' => '1','updated_by' => '1','district_id' => '54','name' => 'Sadarpur','created_at' => '2021-09-08 17:11:25','updated_at' => '2021-09-08 17:11:25'), | |
| array('id' => '6','created_by' => '1','updated_by' => '1','district_id' => '16','name' => 'Titas' |
This file contains hidden or 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
| format to remove <!-- end info-content --> | |
| code : <!-- (.*?)--> |
This file contains hidden or 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
| git pull origin <branch> --rebase |
This file contains hidden or 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
| $('.select-product').trigger("chosen:activate"); //works on verson 1.0 |
This file contains hidden or 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
| sudo a2enmod rewrite |
This file contains hidden or 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
| Laravel File Download: | |
| ---------------------------------- | |
| return response() | |
| ->download(storage_path('app/download.zip')); | |
| Delete File After Download: | |
| ---------------------------------- | |
| return response() | |
| ->download(storage_path('app/download.zip')) | |
| ->deleteFileAfterSend(true); |
This file contains hidden or 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
| Copy File from Remote to Local using SSH: | |
| ------------------------------------------------------------ | |
| scp -r username@remoteIP:/remote_Directory /local_Directory | |
| KILL RUNNING PORT IN UBUNTU | |
| ------------------------------------------------------------- | |
| sudo kill -9 `sudo lsof -t -i:9001` |
NewerOlder