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
alias editprofile="code ~/.zprofile" | |
alias rl="source ~/.zprofile" | |
alias c="clear" | |
alias ci="composer install" | |
alias cu="composer update" | |
alias cr="composer require" | |
alias cs="composer show" | |
alias art="php artisan" |
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
{ | |
"base": "vs-dark", | |
"inherit": true, | |
"rules": [ | |
{ | |
"background": "171f2b", | |
"token": "" | |
}, | |
{ | |
"foreground": "7f8d9f", |
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
/** | |
* Get the classpath of the url generator used by the model. | |
* | |
* @return string | |
*/ | |
public function getUrlGeneratorClass(): string | |
{ | |
return \App\Services\SpatieMediaLibrary\SomeUrlGenerator::class; | |
} |