| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- declare(strict_types=1);
- /*
- |--------------------------------------------------------------------------
- | Custom Validation Attributes
- |--------------------------------------------------------------------------
- |
- | The following language lines are used to swap our attribute placeholder
- | with something more reader friendly such as 'E-Mail Address' instead
- | of 'email'. This simply helps us make our message more expressive.
- |
- */
- return [
- 'attributes' => [
- 'address' => 'address',
- 'affiliate_url' => 'affiliate URL',
- 'age' => 'age',
- 'amount' => 'amount',
- 'announcement' => 'announcement',
- 'area' => 'area',
- 'audience_prize' => 'audience prize',
- 'audience_winner' => 'audience winner',
- 'available' => 'available',
- 'birthday' => 'birthday',
- 'body' => 'body',
- 'city' => 'city',
- 'company' => 'company',
- 'compilation' => 'compilation',
- 'concept' => 'concept',
- 'conditions' => 'conditions',
- 'content' => 'content',
- 'contest' => 'contest',
- 'country' => 'country',
- 'cover' => 'cover',
- 'created_at' => 'created at',
- 'creator' => 'creator',
- 'currency' => 'currency',
- 'current_password' => 'current password',
- 'customer' => 'customer',
- 'date' => 'date',
- 'date_of_birth' => 'date of birth',
- 'dates' => 'dates',
- 'day' => 'day',
- 'deleted_at' => 'deleted at',
- 'description' => 'description',
- 'display_type' => 'display type',
- 'district' => 'district',
- 'duration' => 'duration',
- 'email' => 'email',
- 'excerpt' => 'excerpt',
- 'filter' => 'filter',
- 'finished_at' => 'finished at',
- 'first_name' => 'first name',
- 'gender' => 'gender',
- 'grand_prize' => 'grand prize',
- 'group' => 'group',
- 'hour' => 'hour',
- 'image' => 'image',
- 'image_desktop' => 'desktop image',
- 'image_main' => 'main image',
- 'image_mobile' => 'mobile image',
- 'images' => 'images',
- 'is_audience_winner' => 'is audience winner',
- 'is_hidden' => 'is hidden',
- 'is_subscribed' => 'is subscribed',
- 'is_visible' => 'is visible',
- 'is_winner' => 'is winner',
- 'items' => 'items',
- 'key' => 'key',
- 'last_name' => 'last name',
- 'lesson' => 'lesson',
- 'line_address_1' => 'line address 1',
- 'line_address_2' => 'line address 2',
- 'login' => 'login',
- 'message' => 'message',
- 'middle_name' => 'middle name',
- 'minute' => 'minute',
- 'mobile' => 'mobile',
- 'month' => 'month',
- 'name' => 'name',
- 'national_code' => 'national code',
- 'number' => 'number',
- 'password' => 'password',
- 'password_confirmation' => 'password confirmation',
- 'phone' => 'phone',
- 'photo' => 'photo',
- 'portfolio' => 'portfolio',
- 'postal_code' => 'postal code',
- 'preview' => 'preview',
- 'price' => 'price',
- 'product_id' => 'product ID',
- 'product_uid' => 'product UID',
- 'product_uuid' => 'product UUID',
- 'promo_code' => 'promo code',
- 'province' => 'province',
- 'quantity' => 'quantity',
- 'reason' => 'reason',
- 'recaptcha_response_field' => 'recaptcha response field',
- 'referee' => 'referee',
- 'referees' => 'referees',
- 'reject_reason' => 'reject reason',
- 'remember' => 'remember',
- 'restored_at' => 'restored at',
- 'result_text_under_image' => 'result text under image',
- 'role' => 'role',
- 'rule' => 'rule',
- 'rules' => 'rules',
- 'second' => 'second',
- 'sex' => 'sex',
- 'shipment' => 'shipment',
- 'short_text' => 'short text',
- 'size' => 'size',
- 'skills' => 'skills',
- 'slug' => 'slug',
- 'specialization' => 'specialization',
- 'started_at' => 'started at',
- 'state' => 'state',
- 'status' => 'status',
- 'street' => 'street',
- 'student' => 'student',
- 'subject' => 'subject',
- 'tag' => 'tag',
- 'tags' => 'tags',
- 'teacher' => 'teacher',
- 'terms' => 'terms',
- 'test_description' => 'test description',
- 'test_locale' => 'test locale',
- 'test_name' => 'test name',
- 'text' => 'text',
- 'time' => 'time',
- 'title' => 'title',
- 'type' => 'type',
- 'updated_at' => 'updated at',
- 'user' => 'user',
- 'username' => 'username',
- 'value' => 'value',
- 'winner' => 'winner',
- 'work' => 'work',
- 'year' => 'year',
- ],
- ];
|