@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
{{ __('Brands') }}
@if (count($brands) == 0)

{{ __('NO BRAND FOUND') . '!' }}

@else
@foreach ($brands as $brand)
image
@endforeach
@endif
{{-- create modal --}} @include('backend.home-page.brand.create') {{-- edit modal --}} @include('backend.home-page.brand.edit') @endsection