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
https://www.youtube.com/embed/HH0zOJVOzxs?rel=0&autoplay=1;fs=0;autohide=0;hd=0; |
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
<p><code><input class="form-input" id="tags" placeholder="Enter tags separated by comma." name="tags" type="text"</code></p> | |
<p><code> value="{{ $tags ?? old('tags') ?? '' }}"></code></p> |
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 | |
class Animal | |
{ | |
public static $name = "animal"; | |
// Return the class that is represented by "self::" | |
public function getSelfClass() | |
{ | |
return get_class(); |
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> | |
<textarea ref="body" class="form-input" @input="handleInput" @click="handleInput" v-model="content"></textarea> | |
<div>{{ position}}</div> | |
<button class="button" @click="insertWtf">Insert '<-WTF->'</button> | |
</div> | |
</template> | |
<script> | |
export default { |
OlderNewer