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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
//For defining specTest Class using phpspec | |
//The Main Spec Class would be prompted to you when running below command | |
bin/phpspec describe primeFactors | |
//For running tests | |
bin/phpspec run |
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
//For defining specTest Class using phpspec | |
//The Main Spec Class would be prompted to you when running below command | |
bin/phpspec describe primeFactors | |
//For running tests | |
bin/phpspec run | |
//update npm | |
npm i -g npm |
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
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName server.in | |
ServerAlias server.in | |
<Directory /var/www/html/project/public> | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
Require all granted | |
</Directory> | |
DocumentRoot /var/www/html/project/public/ |
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
//install dropbox | |
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf - | |
~/.dropbox-dist/dropboxd |
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Slime", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.fontSize": 13, | |
"editor.fontLigatures":true, | |
"editor.cursorStyle": "block", | |
"editor.wordWrap": "on", | |
"editor.fontFamily": "Fira Code", |
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\Models\Blogs\Traits\Attribute; | |
/** | |
* Class BlogAttribute. | |
*/ | |
trait BlogAttribute | |
{ | |
/** |
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\Models; | |
trait ModelTrait | |
{ | |
/** | |
* @return string | |
*/ | |
public function getEditButtonAttribute($permission, $route) |
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\Models\Blogs\Traits\Attribute; | |
/** | |
* Class BlogAttribute. | |
*/ | |
trait BlogAttribute | |
{ | |
/** |
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\Models\Blogs; | |
use App\Models\BaseModel; | |
use App\Models\Blogs\Traits\Attribute\BlogAttribute; | |
use App\Models\Blogs\Traits\Relationship\BlogRelationship; | |
use App\Models\ModelTrait; | |
use Illuminate\Database\Eloquent\SoftDeletes; |
OlderNewer