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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- | |
Inspired GitHub Color Scheme for Sublime Text 3 | |
Copyright 2015 Seth Lopez | |
Released under the MIT License <http://opensource.org/licenses/MIT> | |
https://github.com/sethlopezme/InspiredGitHub.tmtheme | |
--> | |
<plist version="1.0"> | |
<dict> |
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
<snippet> | |
<content><![CDATA[ | |
<template> | |
${0} | |
</template> | |
<script> | |
export default { | |
props: [${1}], | |
data() { | |
return { |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- | |
Inspired GitHub Color Scheme for Sublime Text 3 | |
Copyright 2015 Seth Lopez | |
Released under the MIT License <http://opensource.org/licenses/MIT> | |
https://github.com/sethlopezme/InspiredGitHub.tmtheme | |
--> | |
<plist version="1.0"> | |
<dict> |
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
class Errors { | |
/** | |
* Create a new Errors instance. | |
*/ | |
constructor() { | |
this.errors = {}; | |
} | |
/** |
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
class Form { | |
/** | |
* Create a new Form instance. | |
* | |
* @param {object} data | |
*/ | |
constructor(data) { | |
this.originalData = data; | |
for (let field in data) { |
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
.custom-pretty-btn { | |
background-color: transparent; | |
border: 0; | |
font-weight: 500; | |
font-size: 13px; | |
padding: 7px 14px; | |
color: rgb(94, 41, 153); | |
display: inline-block; | |
text-transform: uppercase; | |
letter-spacing: 1px; |
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
.google-like-btn { | |
border-radius: 4px; | |
border: 0; | |
font-weight: 500; | |
font-size: 14px; | |
letter-spacing: 0.25px; | |
line-height: 36px; | |
padding: 0px 24px; | |
display: inline-block; | |
cursor: pointer; |
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 class="flex items-center" v-if="paginationExists()"> | |
<!-- previous --> | |
<div class="cursor-pointer" @click="prev()"> | |
<svg class="w-4 h-4 text-gray-600 fill-current" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | |
<path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"/> | |
</svg> | |
</div> | |
<!-- pages --> |
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 class="small"> | |
<div v-if="datacollection !== null"> | |
<!-- Stat cards --> | |
<div class="row justify-content-center"> | |
<div class="col-md-2 m-1"> | |
<div | |
class="statcard statcard-primary statcard-shadow px-2 py-1" | |
> | |
<h5 class="statcard-number"> |
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 | |
namespace App\Utilities; | |
use Carbon\Carbon; | |
use App\ApiRequest; | |
use Illuminate\Pagination\LengthAwarePaginator; | |
trait PreparesApiActivityData | |
{ |
OlderNewer