@extends('layouts.admin') @section('content')
@if(session('success')) @endif @if(session('error')) @endif
Бренды
@csrf @foreach ($brands as $brand) @endforeach
Название Описание Лого Сайт Страна Активен? Действия
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('logo')
{{ $message }}
@enderror
@error('website')
{{ $message }}
@enderror
@error('country')
{{ $message }}
@enderror
{{ $brand->name }} @if ($brand->description) {{ Str::limit($brand->description, 50) }} @else @endif @if ($brand->logo) {{ $brand->name }} @else @endif @if ($brand->website) {{ Str::limit($brand->website, 30) }} @else @endif @if ($brand->country) {{ $brand->country }} @else @endif @if ($brand->is_active) @else @endif
Редактировать
@csrf @method('DELETE')
@if(method_exists($brands, 'hasPages') && $brands->hasPages()) {{ $brands->links() }} @endif
@endsection