Fix translations typo case
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Shop.articles.title'),
|
||||
'subtitle' => __('Shop.articles.add'),
|
||||
'breadcrumb' => [__('Shop.articles.title'), __('Shop.articles.add')]
|
||||
'title' => __('shop.articles.title'),
|
||||
'subtitle' => __('shop.articles.add'),
|
||||
'breadcrumb' => [__('shop.articles.title'), __('shop.articles.add')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Shop.articles.title'),
|
||||
'subtitle' => __('Shop.articles.edit'),
|
||||
'breadcrumb' => [__('Shop.articles.title'), __('Shop.articles.edit')]
|
||||
'title' => __('shop.articles.title'),
|
||||
'subtitle' => __('shop.articles.edit'),
|
||||
'breadcrumb' => [__('shop.articles.title'), __('shop.articles.edit')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<!--
|
||||
<li class="nav-item">
|
||||
<a href="#offers" class="nav-link" data-toggle="tab" aria-expanded="true">
|
||||
{{ __('Shop.offers.title') }}
|
||||
{{ __('shop.offers.title') }}
|
||||
@if(isset($offers_count))<span class="badge">{{ $offers_count }}</span>@endif
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('Shop.articles.title'),
|
||||
'subtitle' => __('Shop.articles.list'),
|
||||
'breadcrumb' => [__('Shop.articles.title')]
|
||||
'title' => __('shop.articles.title'),
|
||||
'subtitle' => __('shop.articles.list'),
|
||||
'breadcrumb' => [__('shop.articles.title')]
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
@@ -22,14 +22,14 @@
|
||||
@include('components.input', ['name' => 'name', 'value' => $article['name'] ?? null, 'required' => true])
|
||||
</div>
|
||||
<div class="col-4">
|
||||
{{ Form::label('article_nature_id', __('Shop.article_natures.name')) }}<br>
|
||||
{{ Form::label('article_nature_id', __('shop.article_natures.name')) }}<br>
|
||||
@include('components.select', ['name' => 'article_nature_id', 'list' => $natures_options, 'value' => $article['article_nature_id'] ?? null, 'class' => 'select2', 'with_empty' => ''])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
{{ Form::label('categories', __('Shop.shelves.title')) }}<br>
|
||||
{{ Form::label('categories', __('shop.shelves.title')) }}<br>
|
||||
@include('components.select', ['name' => 'categories[]', 'list' => $categories_options, 'values' => $article['categories'] ?? null, 'class' => 'select2', 'multiple' => true])
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user