Skip to content

Instantly share code, notes, and snippets.

@dlnsk
dlnsk / select.blade.php
Created November 29, 2024 04:59
Select component (Laravel)
@props([
'items',
'value',
'choose' => false,
])
<select {{ $attributes->merge(['class' => "custom-select"]) }}>
@if($choose)
<option value="">{{ $choose }}</option>
@endif
@dlnsk
dlnsk / .bash_aliases
Created April 11, 2024 11:10
The Laradock's helper to run commands inside 'workspace' container
#####################################################
# 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.
@dlnsk
dlnsk / post-button.blade.php
Last active April 11, 2024 11:18
Button component integrated with form and confirmation request (Laravel)
@props([
'action',
'method' => 'post',
'class' => '',
'confirmation' => ''
])
<form style="display: inline;" action="{{ $action }}" method="post">
<button type="submit"
class="{{ $class }}"
@dlnsk
dlnsk / Inn.php
Last active October 25, 2023 16:43
Правило для проверки валидности ИНН (Laravel)
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class Inn implements Rule
{
/**
* Определяет соответствует ли значение данному правилу валидации