@extends('panel::layouts.app') @section('body-class', '') @section('title', __('panel/menu.brands')) @section('page-title-right') {{ __('panel/common.create') }} @endsection @section('content')
@if ($brands->count())
@foreach($brands as $item) @endforeach
{{ __('panel/common.id')}} {{ __('panel/brand.logo') }} {{ __('panel/brand.name') }} {{ __('panel/brand.first') }} {{ __('panel/common.slug') }} {{ __('panel/common.position') }} {{ __('panel/common.active') }} {{ __('panel/common.actions') }}
{{ $item->id }} {{ $item->name ?? '' }} {{ $item->first }} {{ $item->slug }} {{ $item->position }} @include('panel::shared.list_switch', [ 'value' => $item->active, 'url' => panel_route( 'brands.active', $item->id ) ])
@csrf @method('DELETE') {{ __('panel/common.delete')}}
{{ $brands->withQueryString()->links('panel::vendor/pagination/bootstrap-4') }} @else @endif
@endsection @push('footer') @endpush