Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
| <template> | |
| <div class="row text-center"> | |
| <div class="col-md-12 mb-3"> | |
| <label>Upload your resume</label> | |
| <small>(.pdf or .docx file please)</small> | |
| </div> | |
| <div class="col-4 offset-4 text-center mb-3"> | |
| <!-- Upload resume button. Trigger function on browser file upload --> | |
| <input type="file" name="resume" @change="uploadResume" class="form-control-file"> | |
| </div> |
| const AWS = require('aws-sdk'); | |
| const Busboy = require('busboy'); | |
| const BUCKET_NAME = ''; | |
| const IAM_USER_KEY = ''; | |
| const IAM_USER_SECRET = ''; | |
| function uploadToS3(file) { | |
| let s3bucket = new AWS.S3({ | |
| accessKeyId: IAM_USER_KEY, |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\Collection; | |
| use Illuminate\Pagination\LengthAwarePaginator; | |
| class AppServiceProvider extends ServiceProvider | |
| { | |
| public function boot() |
| <div class="section2"> | |
| <p>Hola <span>mundo Abs</span> | |
| Reponsive Design | |
| </p> | |
| </div> | |
| <div class="section"> | |
| <p>Hola <span>mundo relative</span>Reponsive Design | |
| </p> | |
| </div> |
| const purgecss = require('@fullhuman/postcss-purgecss') | |
| module.exports = { | |
| plugins: [ | |
| require('tailwindcss')('./tailwind.config.js'), | |
| require('autoprefixer'), | |
| purgecss({ | |
| content: [ | |
| './**/*.html', | |
| //Para agregar soporte para otro tipo de archivos. |
| <?php | |
| /** @var \Illuminate\Database\Eloquent\Factory $factory */ | |
| use App\User; | |
| use Faker\Generator as Faker; | |
| use Illuminate\Support\Str; | |
| /* | |
| |-------------------------------------------------------------------------- |
| <?php | |
| use Illuminate\Database\Migrations\Migration; | |
| use Illuminate\Database\Schema\Blueprint; | |
| use Illuminate\Support\Facades\Schema; | |
| class CreateProductsTable extends Migration | |
| { | |
| /** | |
| * Run the migrations. |
| <?php | |
| public function create(){ | |
| return view('tag.create', [ | |
| 'tags' => Tag::all() | |
| ]); | |
| } | |
| public function store() | |
| { | |
| $this->validateArticle() |
| <?php | |
| <!-- Form Delete --> | |
| <form action="{{ url('images/' . $image['name']) }}" method="POST"> | |
| {{ csrf_field() }} | |
| {{ method_field('DELETE') }} | |
| <button type="submit" class="btn btn-default">Remove</button> | |
| </form> | |
| <!-- Better Practice --> | |
| <h2><a href="/articles/{{ $article->id }}"> |