@extends('admin.layouts.master-soyuz') @section('title','All Requested Brands') @section('body') @component('admin.component.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('All Requested Brands') }} @endslot @slot('menu1') {{ __('Requested Brands') }} @endslot @endcomponent
All Requested Brands
@foreach($brands as $key=> $brand) @endforeach
# Brand Logo Brand Name Brand Proof Action
{{ $key+1 }} @if($brand->image !='') @else @endif {{ $brand->name }} @if($brand->brand_proof !='') {{ url('brandproof/'.$brand->brand_proof) }} @else - @endif
{{csrf_field()}} {{ $brand->status ==1 ? 'Active' : 'Deactive' }}
@endsection