@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($reqbrands 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()}}
@endsection