#4 - wip
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<div class="bg-white sm:rounded-lg shado-md">
|
||||
<InertiaHead title="Użytkownicy" />
|
||||
<div class="bg-white sm:rounded-lg shadow-md">
|
||||
<div class="p-4 sm:px-6">
|
||||
<h2 class="text-lg leading-6 font-medium text-gray-900">
|
||||
Użytkownicy w organizacji
|
||||
@@ -9,146 +10,164 @@
|
||||
</p>
|
||||
</div>
|
||||
<div class="border-t border-gray-200">
|
||||
<div class="px-4 py-3">
|
||||
<div class="relative max-w-md">
|
||||
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
||||
<SearchIcon class="h-5 w-5 text-gray-400" />
|
||||
</div>
|
||||
<input
|
||||
v-model.trim="search"
|
||||
type="search"
|
||||
class="block w-full bg-white border border-gray-300 rounded-md py-2 pl-10 pr-3 text-sm placeholder-gray-500 focus:outline-none focus:text-gray-900 focus:placeholder-gray-400 focus:ring-1 focus:ring-blumilk-500 focus:border-blumilk-500 sm:text-sm mt-1"
|
||||
placeholder="Szukaj"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
<div class="overflow-x-auto xl:overflow-x-visible overflow-y-auto xl:overflow-y-visible">
|
||||
<div class="align-middle inline-block min-w-full">
|
||||
<div class="shadow sm:rounded-b-lg">
|
||||
<table
|
||||
class="min-w-full divide-y divide-gray-200"
|
||||
<table class="min-w-full divide-y divide-gray-200">
|
||||
<thead class="bg-gray-50">
|
||||
<tr>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
>
|
||||
Imię i nazwisko
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
>
|
||||
Rola
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
>
|
||||
Forma zatrudnienia
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
>
|
||||
Data rozpoczęcia
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
/>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="bg-white divide-y divide-gray-100">
|
||||
<tr
|
||||
v-for="user in users.data"
|
||||
:key="user.id"
|
||||
class="hover:bg-white"
|
||||
>
|
||||
<thead class="bg-gray-50">
|
||||
<tr>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
<div class="flex">
|
||||
<span
|
||||
class="inline-flex items-center justify-center h-10 w-10 rounded-full bg-blumilk-500"
|
||||
>
|
||||
Imię i nazwisko
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
>
|
||||
Status
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
>
|
||||
Rola
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
>
|
||||
Data dodania
|
||||
</th>
|
||||
<th
|
||||
scope="col"
|
||||
class="px-6 py-3 text-left text-xs font-semibold text-gray-500 uppercase tracking-wider"
|
||||
/>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="bg-white divide-y divide-gray-100">
|
||||
<tr
|
||||
v-for="user in users.data"
|
||||
:key="user.id"
|
||||
class="hover:bg-white"
|
||||
>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
<div class="flex">
|
||||
<span class="inline-flex items-center justify-center h-10 w-10 rounded-full bg-indigo-500">
|
||||
<img
|
||||
class="h-10 w-10 rounded-full"
|
||||
:src="user.avatar"
|
||||
alt=""
|
||||
>
|
||||
</span>
|
||||
<div class="ml-3">
|
||||
<p class="text-sm font-medium break-all text-gray-900">
|
||||
{{ user.name }}
|
||||
</p>
|
||||
<p class="text-sm break-all text-gray-500">
|
||||
{{ user.email }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
<span
|
||||
class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full bg-yellow-100 text-yellow-800"
|
||||
data-cy="invited-status"
|
||||
<img
|
||||
class="h-10 w-10 rounded-full"
|
||||
:src="user.avatar"
|
||||
alt=""
|
||||
>
|
||||
Zaproszony
|
||||
</span>
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
{{ user.role }}
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
5 listopada 2021
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500 text-right">
|
||||
<div
|
||||
x-data="dropdown"
|
||||
class="relative inline-block text-left"
|
||||
@keydown.escape="close()"
|
||||
@click.outside="close()"
|
||||
</span>
|
||||
<div class="ml-3">
|
||||
<p class="text-sm font-medium break-all text-gray-900">
|
||||
{{ user.name }}
|
||||
</p>
|
||||
<p class="text-sm break-all text-gray-500">
|
||||
{{ user.email }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
{{ user.role }}
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
{{ user.employmentForm }}
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||
{{ user.employmentStartDate }}
|
||||
</td>
|
||||
<td class="px-4 py-4 whitespace-nowrap text-sm text-gray-500 text-right">
|
||||
<div>
|
||||
<button
|
||||
class="rounded-full flex items-center text-gray-400 hover:text-gray-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-blumilk-500"
|
||||
>
|
||||
<svg
|
||||
class="h-5 w-5"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill="currentColor"
|
||||
>
|
||||
<div>
|
||||
<button
|
||||
class="rounded-full flex items-center text-gray-400 hover:text-gray-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-100 focus:ring-indigo-500"
|
||||
data-cy="options-button"
|
||||
@click="toggle()"
|
||||
>
|
||||
<svg
|
||||
class="h-5 w-5"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill="currentColor"
|
||||
>
|
||||
<path d="M10 6a2 2 0 110-4 2 2 0 010 4zM10 12a2 2 0 110-4 2 2 0 010 4zM10 18a2 2 0 110-4 2 2 0 010 4z" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div
|
||||
x-show="show"
|
||||
x-transition:enter="transition ease-out duration-100"
|
||||
x-transition:enter-start="transform opacity-0 scale-95"
|
||||
x-transition:enter-end="transform opacity-100 scale-100"
|
||||
x-transition:leave="transition ease-in duration-75"
|
||||
x-transition:leave-start="transform opacity-100 scale-100"
|
||||
x-transition:leave-end="transform opacity-0 scale-95"
|
||||
class="origin-top-right absolute right-6 mt-2 w-56 z-10 rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 divide-y divide-gray-200"
|
||||
data-cy="options-list"
|
||||
style="display: none;"
|
||||
>
|
||||
<a
|
||||
href="#"
|
||||
role="button"
|
||||
class="group flex items-center px-4 py-2 text-sm font-semibold text-gray-500 hover:bg-gray-100"
|
||||
wire:click.prevent="inviteAgain"
|
||||
data-cy="invite-again-button"
|
||||
@click="close()"
|
||||
>
|
||||
Wyślij zaproszenie ponownie
|
||||
</a>
|
||||
<a
|
||||
href="#"
|
||||
role="button"
|
||||
class="group flex items-center px-4 py-2 text-sm font-semibold text-gray-500 hover:bg-gray-100"
|
||||
wire:click.prevent="cancelInvitation"
|
||||
data-cy="cancel-invitation-button"
|
||||
@click="close()"
|
||||
>
|
||||
<span class="text-red-500">
|
||||
Anuluj zaproszenie
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<path
|
||||
d="M10 6a2 2 0 110-4 2 2 0 010 4zM10 12a2 2 0 110-4 2 2 0 010 4zM10 18a2 2 0 110-4 2 2 0 010 4z"
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
v-if="! users.data.length"
|
||||
>
|
||||
<td
|
||||
colspan="100%"
|
||||
class="text-center py-4 text-xl leading-5 text-gray-700"
|
||||
>
|
||||
Brak danych
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div
|
||||
v-if="users.data.length"
|
||||
class="bg-white px-4 py-3 flex items-center justify-between border-t border-gray-200 sm:px-6 rounded-b-lg"
|
||||
>
|
||||
<div class="flex-1 flex justify-between sm:hidden">
|
||||
<InertiaLink
|
||||
:is="users.links.prev ? 'InertiaLink': 'span'"
|
||||
:href="users.links.prev"
|
||||
class="relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50"
|
||||
>
|
||||
Poprzednia
|
||||
</InertiaLink>
|
||||
<Component
|
||||
:is="users.links.next ? 'InertiaLink': 'span'"
|
||||
:href="users.links.next"
|
||||
class="ml-3 relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50"
|
||||
>
|
||||
Następna
|
||||
</Component>
|
||||
</div>
|
||||
<div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
|
||||
<div class="text-sm text-gray-700">
|
||||
Wyświetlanie
|
||||
<span class="font-medium">{{ users.meta.from }}</span>
|
||||
od
|
||||
<span class="font-medium">{{ users.meta.to }}</span>
|
||||
do
|
||||
<span class="font-medium">{{ users.meta.total }}</span>
|
||||
wyników
|
||||
</div>
|
||||
<nav class="relative z-0 inline-flex space-x-1">
|
||||
<template
|
||||
v-for="(link, index) in users.meta.links"
|
||||
:key="index"
|
||||
>
|
||||
<Component
|
||||
:is="link.url ? 'InertiaLink' : 'span'"
|
||||
:href="link.url"
|
||||
class="relative inline-flex items-center px-4 py-2 border rounded-md text-sm font-medium"
|
||||
:class="{ 'z-10 bg-blumilk-25 border-blumilk-500 text-blumilk-600': link.active, 'bg-white border-gray-300 text-gray-500': !link.active, 'hover:bg-blumilk-25': link.url, 'border-none': !link.url}"
|
||||
v-text="link.label"
|
||||
/>
|
||||
</template>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -157,13 +176,39 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { ref, watch } from 'vue';
|
||||
import { Inertia } from '@inertiajs/inertia';
|
||||
import { debounce } from 'lodash';
|
||||
import { SearchIcon } from '@heroicons/vue/outline';
|
||||
|
||||
export default {
|
||||
name: 'UserIndex',
|
||||
components: {
|
||||
SearchIcon,
|
||||
},
|
||||
props: {
|
||||
users: {
|
||||
type: Object,
|
||||
default: () => {},
|
||||
}
|
||||
default: () => null,
|
||||
},
|
||||
filters: {
|
||||
type: Object,
|
||||
default: () => null,
|
||||
},
|
||||
},
|
||||
setup(props) {
|
||||
let search = ref(props.filters.search);
|
||||
|
||||
watch(search, debounce(value => {
|
||||
Inertia.get('/users', value ? { search: value} : {}, {
|
||||
preserveState: true,
|
||||
replace: true,
|
||||
});
|
||||
}, 300));
|
||||
|
||||
return {
|
||||
search,
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
@@ -265,7 +265,7 @@ export default {
|
||||
setup() {
|
||||
const user = computed(() => usePage().props.value.auth.user);
|
||||
const navigation = [
|
||||
{name: 'Dashboard', href: '/', current: true},
|
||||
{name: 'Strona główna', href: '/', current: true},
|
||||
{name: 'Użytkownicy', href: '/users', current: false},
|
||||
{name: 'Resources', href: '#', current: false},
|
||||
{name: 'Company Directory', href: '#', current: false},
|
||||
|
@@ -3,6 +3,6 @@
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"previous" => "« Previous",
|
||||
"next" => "Next »",
|
||||
"previous" => "Previous",
|
||||
"next" => "Next",
|
||||
];
|
||||
|
@@ -1,3 +1,7 @@
|
||||
{
|
||||
"User does not exist.": "Użytkownik nie istnieje."
|
||||
"User does not exist.": "Użytkownik nie istnieje.",
|
||||
"employment_contract": "Umowa o pracę",
|
||||
"commission_contract": "Umowa zlecenie",
|
||||
"b2b_contract": "Kontrakt B2B",
|
||||
"board_member_contract": "Członek zarządu"
|
||||
}
|
9
resources/lang/pl/auth.php
Normal file
9
resources/lang/pl/auth.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"failed" => "Błędny login lub hasło.",
|
||||
"password" => "Podane hasło jest nieprawidłowe.",
|
||||
"throttle" => "Za dużo nieudanych prób logowania. Proszę spróbować za :seconds sekund.",
|
||||
];
|
8
resources/lang/pl/pagination.php
Normal file
8
resources/lang/pl/pagination.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"next" => "Następna",
|
||||
"previous" => "Poprzednia",
|
||||
];
|
11
resources/lang/pl/passwords.php
Normal file
11
resources/lang/pl/passwords.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"reset" => "Hasło zostało zresetowane!",
|
||||
"sent" => "Przypomnienie hasła zostało wysłane!",
|
||||
"throttled" => "Proszę zaczekać zanim spróbujesz ponownie.",
|
||||
"token" => "Token resetowania hasła jest nieprawidłowy.",
|
||||
"user" => "Nie znaleziono użytkownika z takim adresem e-mail.",
|
||||
];
|
117
resources/lang/pl/validation.php
Normal file
117
resources/lang/pl/validation.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"accepted" => "Pole :attribute musi zostać zaakceptowane.",
|
||||
"active_url" => "Pole :attribute jest nieprawidłowym adresem URL.",
|
||||
"after" => "Pole :attribute musi być datą późniejszą od :date.",
|
||||
"after_or_equal" => "Pole :attribute musi być datą nie wcześniejszą niż :date.",
|
||||
"alpha" => "Pole :attribute może zawierać jedynie litery.",
|
||||
"alpha_dash" => "Pole :attribute może zawierać jedynie litery, cyfry i myślniki.",
|
||||
"alpha_num" => "Pole :attribute może zawierać jedynie litery i cyfry.",
|
||||
"array" => "Pole :attribute musi być tablicą.",
|
||||
"attached" => "Ten :attribute jest już dołączony.",
|
||||
"before" => "Pole :attribute musi być datą wcześniejszą od :date.",
|
||||
"before_or_equal" => "Pole :attribute musi być datą nie późniejszą niż :date.",
|
||||
"between" => [
|
||||
"array" => "Pole :attribute musi składać się z :min - :max elementów.",
|
||||
"file" => "Pole :attribute musi zawierać się w granicach :min - :max kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi zawierać się w granicach :min - :max.",
|
||||
"string" => "Pole :attribute musi zawierać się w granicach :min - :max znaków.",
|
||||
],
|
||||
"boolean" => "Pole :attribute musi mieć wartość logiczną prawda albo fałsz.",
|
||||
"confirmed" => "Potwierdzenie pola :attribute nie zgadza się.",
|
||||
"current_password" => "Hasło jest nieprawidłowe.",
|
||||
"date" => "Pole :attribute nie jest prawidłową datą.",
|
||||
"date_equals" => "Pole :attribute musi być datą równą :date.",
|
||||
"date_format" => "Pole :attribute nie jest w formacie :format.",
|
||||
"different" => "Pole :attribute oraz :other muszą się różnić.",
|
||||
"digits" => "Pole :attribute musi składać się z :digits cyfr.",
|
||||
"digits_between" => "Pole :attribute musi mieć od :min do :max cyfr.",
|
||||
"dimensions" => "Pole :attribute ma niepoprawne wymiary.",
|
||||
"distinct" => "Pole :attribute ma zduplikowane wartości.",
|
||||
"email" => "Pole :attribute nie jest poprawnym adresem e-mail.",
|
||||
"ends_with" => "Pole :attribute musi kończyć się jedną z następujących wartości: :values.",
|
||||
"exists" => "Zaznaczone pole :attribute jest nieprawidłowe.",
|
||||
"file" => "Pole :attribute musi być plikiem.",
|
||||
"filled" => "Pole :attribute nie może być puste.",
|
||||
"gt" => [
|
||||
"array" => "Pole :attribute musi mieć więcej niż :value elementów.",
|
||||
"file" => "Pole :attribute musi być większe niż :value kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi być większe niż :value.",
|
||||
"string" => "Pole :attribute musi być dłuższe niż :value znaków.",
|
||||
],
|
||||
"gte" => [
|
||||
"array" => "Pole :attribute musi mieć :value lub więcej elementów.",
|
||||
"file" => "Pole :attribute musi być większe lub równe :value kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi być większe lub równe :value.",
|
||||
"string" => "Pole :attribute musi być dłuższe lub równe :value znaków.",
|
||||
],
|
||||
"image" => "Pole :attribute musi być obrazkiem.",
|
||||
"in" => "Zaznaczony element :attribute jest nieprawidłowy.",
|
||||
"in_array" => "Pole :attribute nie znajduje się w :other.",
|
||||
"integer" => "Pole :attribute musi być liczbą całkowitą.",
|
||||
"ip" => "Pole :attribute musi być prawidłowym adresem IP.",
|
||||
"ipv4" => "Pole :attribute musi być prawidłowym adresem IPv4.",
|
||||
"ipv6" => "Pole :attribute musi być prawidłowym adresem IPv6.",
|
||||
"json" => "Pole :attribute musi być poprawnym ciągiem znaków JSON.",
|
||||
"lt" => [
|
||||
"array" => "Pole :attribute musi mieć mniej niż :value elementów.",
|
||||
"file" => "Pole :attribute musi być mniejsze niż :value kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi być mniejsze niż :value.",
|
||||
"string" => "Pole :attribute musi być krótsze niż :value znaków.",
|
||||
],
|
||||
"lte" => [
|
||||
"array" => "Pole :attribute musi mieć :value lub mniej elementów.",
|
||||
"file" => "Pole :attribute musi być mniejsze lub równe :value kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi być mniejsze lub równe :value.",
|
||||
"string" => "Pole :attribute musi być krótsze lub równe :value znaków.",
|
||||
],
|
||||
"max" => [
|
||||
"array" => "Pole :attribute nie może mieć więcej niż :max elementów.",
|
||||
"file" => "Pole :attribute nie może być większe niż :max kilobajtów.",
|
||||
"numeric" => "Pole :attribute nie może być większe niż :max.",
|
||||
"string" => "Pole :attribute nie może być dłuższe niż :max znaków.",
|
||||
],
|
||||
"mimes" => "Pole :attribute musi być plikiem typu :values.",
|
||||
"mimetypes" => "Pole :attribute musi być plikiem typu :values.",
|
||||
"min" => [
|
||||
"array" => "Pole :attribute musi mieć przynajmniej :min elementów.",
|
||||
"file" => "Pole :attribute musi mieć przynajmniej :min kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi być nie mniejsze od :min.",
|
||||
"string" => "Pole :attribute musi mieć przynajmniej :min znaków.",
|
||||
],
|
||||
"multiple_of" => "Pole :attribute musi być wielokrotnością wartości :value",
|
||||
"not_in" => "Zaznaczony :attribute jest nieprawidłowy.",
|
||||
"not_regex" => "Format pola :attribute jest nieprawidłowy.",
|
||||
"numeric" => "Pole :attribute musi być liczbą.",
|
||||
"password" => "Hasło jest nieprawidłowe.",
|
||||
"present" => "Pole :attribute musi być obecne.",
|
||||
"prohibited" => "Pole :attribute jest zabronione.",
|
||||
"prohibited_if" => "Pole :attribute jest zabronione, gdy :other to :value.",
|
||||
"prohibited_unless" => "Pole :attribute jest zabronione, chyba że :other jest w :values.",
|
||||
"regex" => "Format pola :attribute jest nieprawidłowy.",
|
||||
"relatable" => "Ten :attribute może nie być powiązany z tym zasobem.",
|
||||
"required" => "Pole :attribute jest wymagane.",
|
||||
"required_if" => "Pole :attribute jest wymagane gdy :other ma wartość :value.",
|
||||
"required_unless" => "Pole :attribute jest wymagane jeżeli :other nie znajduje się w :values.",
|
||||
"required_with" => "Pole :attribute jest wymagane gdy :values jest obecny.",
|
||||
"required_with_all" => "Pole :attribute jest wymagane gdy wszystkie :values są obecne.",
|
||||
"required_without" => "Pole :attribute jest wymagane gdy :values nie jest obecny.",
|
||||
"required_without_all" => "Pole :attribute jest wymagane gdy żadne z :values nie są obecne.",
|
||||
"same" => "Pole :attribute i :other muszą być takie same.",
|
||||
"size" => [
|
||||
"array" => "Pole :attribute musi zawierać :size elementów.",
|
||||
"file" => "Pole :attribute musi mieć :size kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi mieć :size.",
|
||||
"string" => "Pole :attribute musi mieć :size znaków.",
|
||||
],
|
||||
"starts_with" => "Pole :attribute musi zaczynać się jedną z następujących wartości: :values.",
|
||||
"string" => "Pole :attribute musi być ciągiem znaków.",
|
||||
"timezone" => "Pole :attribute musi być prawidłową strefą czasową.",
|
||||
"unique" => "Taki :attribute już występuje.",
|
||||
"uploaded" => "Nie udało się wgrać pliku :attribute.",
|
||||
"url" => "Format pola :attribute jest nieprawidłowy.",
|
||||
"uuid" => "Pole :attribute musi być poprawnym identyfikatorem UUID.",
|
||||
];
|
Reference in New Issue
Block a user