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
@props([ | |
'items', | |
'value', | |
'choose' => false, | |
]) | |
<select {{ $attributes->merge(['class' => "custom-select"]) }}> | |
@if($choose) | |
<option value="">{{ $choose }}</option> | |
@endif |
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
##################################################### | |
# This is a helper for Laradock (https://github.com/laradock/laradock) | |
# Allows to run commands inside the 'workspace' container. | |
# | |
# Installation: | |
# Put the file in your home dirrectory or add content to existing one. | |
# Also you can add content at the end of .bashrc | |
# Restart console. | |
# Using: | |
# Run 'le' from your project's dir and you'll see examples. |
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\Rules; | |
use Illuminate\Contracts\Validation\Rule; | |
class Inn implements Rule | |
{ | |
/** | |
* Определяет соответствует ли значение данному правилу валидации |