View pinguim.zsh-theme
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
CURRENT_BG='NONE' | |
case ${SOLARIZED_THEME:-dark} in | |
light) CURRENT_FG='white';; | |
*) CURRENT_FG='black';; | |
esac | |
# Special Powerline characters | |
() { |
View VSCode
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
alefragnani.project-manager | |
amiralizadeh9480.laravel-extra-intellisense | |
antfu.icons-carbon | |
austenc.laravel-blade-spacer | |
bmewburn.vscode-intelephense-client | |
bradlc.vscode-tailwindcss | |
calebporzio.better-keybindings | |
calebporzio.better-phpunit | |
ceciljacob.code-plus-theme | |
cjhowe7.laravel-blade |
View Aliases
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
# ------------------------------------------------------------------------------------------- | |
# ALIASES | |
# ------------------------------------------------------------------------------------------- | |
# Brew | |
alias bsa='brew services start' | |
alias bs='brew services' | |
alias bso='brew services stop' | |
# Git |
View SlugService
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\Services; | |
use DB; | |
class SlugService | |
{ | |
public static function create($title, $table, $id = 0) | |
{ |