@extends('layouts.admin') @section('title') Brands @endsection @section('content') @push('page_style')
{{-- start approve brand modal --}} {{-- end approve brand modal --}} @php $reasons = \App\Models\RejectedBrand::ReasonsOptions(); @endphp {{-- reject new brand add modal start --}} {{-- reject new brand modal end --}}
@if ($brandFiles->count() > 0) @endif

Additional Info

...

Brand Name

{{!empty($brandObject) ? $brandObject->title :''}}

@if(!empty($brand->country))
...

Country

{{$brand->country->name}}

@endif @if(!empty($brand->registration_number))
...

Reg. No.

{{!empty($brand) ? $brand->registration_number :''}}

@endif @if(!empty($brand->web_registration))
...

Web Registration

{{$brand->web_registration}}

@endif @if(!empty($brand->product_website)) @php $productOrService = ($brand->type == \App\Models\AddNewBrand::IS_PRODUCT) ? "Product" : "Service"; @endphp
...

{{$productOrService}} Website

{{$brand->product_website}}

@endif

Created by: {{!empty($brand) ? $brand->getCreatedBy->full_name :''}}

Category : {{!empty($brand) ? $brand->getBrandCategory()->title :''}}

@if(!empty($brand->brand_logo))

Brand Logo

@endif

Brand Info

{{!empty($brand) ? $brand->brand_info :''}}

Existing Brands :

    @foreach($allBrandRelatedToCurrentCategory as $brandKey => $brandValue)
  • {{$brandValue->title}}
  • @endforeach {{--
  • 22 Design
  • 32 Degrees
  • Active
  • Active Wear
  • Adidas
  • Air Force
  • Airblaster
  • Airsoft
  • Airwalk
  • Allian
  • --}}
@endsection @push('page_script') @endpush