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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"font_face": "Operator Mono", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" | |
], | |
"font_size": 15, |
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
{ | |
"always_show_minimap_viewport": false, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Colorsublime - Themes/santojon-dark.tmTheme", | |
"font_face": "Operator Mono", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" | |
], |
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
<template> | |
<div> | |
<breadcrumb | |
:breadcrumbs="this.breadcrumbs" | |
:icon="'tag grey icon'" | |
:discardbutton="{ 'name' : 'products.index' }" | |
:savebutton="this.createProduct" | |
:loading="this.dataLoading"> | |
</breadcrumb> |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"editor.fontFamily": "Operator Mono, Monaco, 'Courier New', monospace", | |
"workbench.colorTheme": "One Dark Pro Vivid", | |
"workbench.activityBar.visible": false, | |
"workbench.sideBar.location": "left", | |
"workbench.colorCustomizations": { | |
"tab.activeBackground": "#282c34", |
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
<?php | |
use App\User as User; | |
use App\Role as Role; | |
use App\Permission as Permission; | |
use Illuminate\Database\Seeder; | |
use Illuminate\Database\Eloquent\Model; | |
class RolesAndPermissionsSeeder extends Seeder { |
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
<?php | |
use App\User as User; | |
use App\Role as Role; | |
use App\Permission as Permission; | |
use Illuminate\Database\Seeder; | |
use Illuminate\Database\Eloquent\Model; | |
class RolesAndPermissionsSeeder extends Seeder { |
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
const us_states = [ | |
{ | |
id: "AL", | |
name: "Alabama" | |
}, | |
{ | |
id: "AK", | |
name: "Alaska" | |
}, | |
{ |
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
{ | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"editor.fontFamily": "Operator Mono, Monaco, 'Courier New', monospace", | |
"editor.lineHeight": 24, | |
"editor.fontLigatures": true, | |
"editor.tabCompletion": true, | |
"editor.formatOnSave": true, | |
"explorer.decorations.badges": false, | |
"editor.multiCursorModifier": "ctrlCmd", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{ | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"editor.fontFamily": "Operator Mono, Monaco, 'Courier New', monospace", | |
"editor.lineHeight": 24, | |
"editor.fontLigatures": true, | |
"editor.tabCompletion": true, | |
"editor.formatOnSave": true, | |
"explorer.decorations.badges": false, | |
"editor.multiCursorModifier": "ctrlCmd", |