This file contains 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
#!/bin/bash | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run as root" | |
exit | |
fi | |
apt-get install pkg-config libmagickwand-dev -y | |
cd /tmp | |
wget https://pecl.php.net/get/imagick-3.6.0.tgz | |
tar xvzf imagick-3.6.0.tgz |
This file contains 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
<div class="progress"> | |
@foreach ($steps as $step) | |
<div class="{{ $step[0] }} | |
{{ $loop->iteration > $currentStep ? '' : 'progress__step--active' }} | |
{{ $loop->iteration >= $currentStep ? '' : 'progress__step--done' }}"> | |
{{ $step[1] }} | |
</div> | |
@endforeach | |
</div> |
This file contains 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
<div class="hexagons"> | |
<div class="hexagons__row"> | |
<div class="hexagon"> | |
<div class="hexagon__image" style="background-image: url('image.jpg');"></div> | |
<div class="hexagon__description"> | |
<h5>Description title</h5> | |
<p>Description content</p> | |
</div> | |
</div> | |
<div class="hexagon"> |
This file contains 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 | |
FormBuilder::macro('openOrModel', function ($post, $put, $model = null) { | |
return ! $model | |
? \Form::open(['route' => $post, 'method' => 'post']) | |
: \Form::model($model, ['route' => $put, 'method' => 'put']); | |
}); | |
// Use it like this: | |
// |
This file contains 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
<div class="Treeview"> | |
<ul> | |
<li> | |
<a class="Treeview__Item" href="#">Equipos</a> | |
<ul> | |
<li><a href="#" class="Treeview__Item">Fuentes</a></li> | |
<li><a href="#" class="Treeview__Item">Dispensadores</a></li> | |
<li><a href="#" class="Treeview__Item">Osmosis</a></li> | |
<li><a href="#" class="Treeview__Item">Descalcificadores</a></li> |
This file contains 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\Providers; | |
use Illuminate\Routing\Router; | |
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; | |
class RouteServiceProvider extends ServiceProvider | |
{ | |
/** |
This file contains 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 Devio\Propertier; | |
use Throwable; | |
trait SavesUsingTransaction | |
{ | |
protected $savingTransaction = true; |
This file contains 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 TestCase extends Illuminate\Foundation\Testing\TestCase | |
{ | |
/** | |
* The base URL to use while testing the application. | |
* | |
* @var string | |
*/ | |
protected $baseUrl = 'http://samples.dev'; |
This file contains 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\Providers; | |
use Illuminate\Routing\Router; | |
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; | |
class RouteServiceProvider extends ServiceProvider | |
{ | |
/** |
NewerOlder