@extends('app')
@include('nav-bar')
@include('left-menu')
@section('content')
@include('speedbar')
@if($groupSubRelations->new == 1)
@include('list-elements', [
])
@else
@include('list-elements', [
])
@endif
@if(!empty($brands))
| {{trans('variables.title_table')}} |
{{trans('variables.position_table')}} |
@foreach($brands as $key => $brand)
|
@if($lang == 'ro')
{{ isset($brand->name_ro) ? $brand->name_ro : '' }}
@else
{{ isset($brand->name) ? $brand->name : '' }}
@endif
|
|
@endforeach
{{--
|
{!! $goods_subject_id_list->links() !!}
|
--}}
@else
{{trans('variables.list_is_empty')}}
@endif
@stop
@section('footer')
@stop