Skip to content

Instantly share code, notes, and snippets.

View diazemiliano-zz's full-sized avatar

Emiliano Díaz diazemiliano-zz

View GitHub Profile
@diazemiliano-zz
diazemiliano-zz / index.html
Created December 6, 2019 07:13
index.html
<!DOCTYPE html>
<html style="background:transparent;">
<head>
<title>Page Title</title>
</head>
<body style="background:transparent;">
<h1>My First Heading</h1>
<p>My first paragraph.</p>
@diazemiliano-zz
diazemiliano-zz / index.html
Created December 6, 2019 07:13
index.html
<!DOCTYPE html>
<html style="background:transparent;">
<head>
<title>Page Title</title>
</head>
<body style="background:transparent;">
<h1>My First Heading</h1>
<p>My first paragraph.</p>
console.log("Im just a cool script saying hello.")
@diazemiliano-zz
diazemiliano-zz / DataValidator.php
Last active July 1, 2017 02:49
Laravel Extended FormRequest Class for Validate multiple controller actions.
<?php
namespace Datavalidator\Validators;
use Datavalidator\Traits\ValidationTrait;
abstract class DataValidator extends FormRequest
{
use ValidationTrait;