Skip to content

Instantly share code, notes, and snippets.

View Scarwolf's full-sized avatar
🎯
Focusing

Scarwolf

🎯
Focusing
View GitHub Profile
@Scarwolf
Scarwolf / errors.blade.php
Created September 21, 2018 12:16
Displays Laravel Form Validation Errors as a Bootstrap Alert.
@if(count($errors) > 0)
<div class="row">
<div class="col-md-12">
<div class="alert alert-danger">
@foreach ($errors->all() as $error)
<div>{{ $error }}</div>
@endforeach
</div>
</div>
</div>
@Scarwolf
Scarwolf / CORS.php
Created May 31, 2018 12:06
Laravel 5.6 CORS Middleware
// Full File Path: app/Http/Middleware/CORS.php
<?php
namespace App\Http\Middleware;
use Closure;
class CORS {