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
{ | |
"hand": "left", | |
"onPeriodStart": { | |
"thumb": 31.8, | |
"pointing": 15.4, | |
"middle": 25.4, | |
"ring": 10.4, | |
"pinky": 15.4 | |
}, | |
"onPeriodEnd": { |
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
{ | |
"hand": "left", | |
"onPeriodStart": { | |
"thumb": 31.8, | |
"pointing": 15.4, | |
"middle": 25.4, | |
"ring": 10.4, | |
"pinky": 15.4 | |
}, | |
"onPeriodEnd": { |
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
{ | |
"hand": "left", | |
"onPeriodStart": { | |
"thumb": 31.8, | |
"pointing": 15.4, | |
"middle": 25.4, | |
"ring": 10.4, | |
"pinky": 15.4 | |
}, | |
"onPeriodEnd": { |
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></template> | |
<script> | |
import SVGVector2D from './../../SVGVector2D' | |
export default { | |
data() { | |
return { | |
svg: null, |
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> | |
<div class="position-relative"> | |
<div class="blue merida"> | |
<div class="cg-board-wrap" ref="board"> | |
</div> | |
</div> | |
<PromotionChoice v-if=" ! _.isNull(promotion)" |
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
var videoPlayer = { | |
props: { | |
origin:{ | |
type: String, | |
required: true | |
}, | |
video_key:{ | |
type: String, | |
required: true | |
}, |
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> | |
<div class="row mb-3"> | |
<div class="col-sm-9"> | |
<input v-on:input="onFilterChange" v-model="filter" type="search" class="form-control form-control-sm" :placeholder="__('main.Search')"> | |
</div> | |
<div class="col-sm-3"> | |
<a href="/add" role="button" class="btn btn-success btn-sm">{{__('main.Add')}}</a> | |
</div> | |
</div> |
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\Repositories; | |
use App\CarGroup; | |
use App\Manufacturer; | |
use App\Car; | |
use App\Tag; | |
use Illuminate\Support\Arr; | |
use Illuminate\Support\Collection; | |
use Illuminate\Support\Facades\Cache; |
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; | |
use Illuminate\Database\Eloquent\Model; | |
class Station extends Model | |
{ | |
const TYPE_LARGEST = 0; // важнейшие станции | |
const TYPE_MAIN = 1; // главные, узловые, конечные станции |
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\Http\Controllers; | |
use App\Http\Requests\UpdateLineRequest; | |
use App\Repositories\CountriesRepository; | |
use App\Repositories\LineRepository; | |
use App\Repositories\SettingsRepository; | |
use App\Repositories\ViewRepository; | |
use App\Line; |