@extends('layouts.app') @section('content')

{{ __('Brands') }}

@if (count($productsBrands) > 0) @foreach ($productsBrands as $productsBrand) @endforeach
{{ __('Name') }} {{ __('Image') }} {{ __('Actions') }}
{{ app()->getLocale() == 'ar' ? $productsBrand-> label_ar : $productsBrand-> label_en }} @if(!empty($productsBrand-> img )) @endif {{ __('Edit') }}
@csrf @method('DELETE')
{{ $productsBrands->appends(Request::all())->links() }}
@else

{{ __('No products Brand found.') }}

@endif
@endsection