@extends('backend.layout')
{{-- this style will be applied when the direction of language is right-to-left --}}
@includeIf('backend.partials.rtl-style')
@section('content')
@if (count($brands) == 0)
{{ __('NO BRAND FOUND') . '!' }}
@else
@foreach ($brands as $brand)
@endforeach
@endif
{{-- create modal --}}
@include('backend.home-page.brand.create')
{{-- edit modal --}}
@include('backend.home-page.brand.edit')
@endsection