@extends('admin.layouts.app') @section('main_content')

{{translate($title)}}

{{translate('Brand List')}}
@forelse ($brands as $brand) @empty @endforelse
# {{translate('Name')}} {{translate('Top Brand')}} {{translate('Status')}} {{translate('Options')}}
{{$loop->iteration}}
{{$brand->logo}}
{{@get_translation($brand->name)}} @if($brand->top == '2') @endif
@if($brand->top==2) @else @endif @if($brand->status == 1) {{translate('Active')}} @else {{translate('Inactive')}} @endif
@if(permission_check('update_brand')) @endif @if(permission_check('delete_brand')) @endif
@include('admin.partials.not_found')
{{$brands->appends(request()->all())->links()}}
@include('admin.modal.delete_modal') @endsection @push('script-push') @endpush