@extends('layouts.admin') @section('title', 'Shops QR Code List') @section('styles') @endsection @section('breadcrumb-item') @endsection @section('content')

Shops QR Code List


@csrf

@php $boxCount = 0; @endphp @php $boxtwo = 0; @endphp @if (!empty($shops) && $shops->count()) @foreach ($shops as $shop) @php $base = url(getenv('APP_URL')); $part1 = '/admin/shop/'; $id = $shop->id; $part2 = '/show'; $shop_url = $base . $part1 . $id . $part2; @endphp
{{ QrCode::size(125)->generate($shop_url) }}

SHOP NAME:

{{-- {{ $shop->name }} --}} {{ substr($shop->name, 0, 23) }}

AREA: {{ $shop->area->name ?? '' }}

FOR ORDER & COMPLAINT

logo

Suit # 102. 1st Floor , Fine center Commerical. Block-V , Gulshan-e-iqbal Karachi. +922134155063

bdm@brightvision.com.pk

www.brightvision.com.pk

@php $boxCount++; @endphp @if ($boxCount % 10 == 0)
@endif @php $boxtwo++; @endphp @if ($boxtwo % 10 == 0)
@endif @endforeach @endif

@if(!request()->has('shop_ids') && !request()->has('area_ids')) {!! $shops->links() !!} @endif
@endsection @section('scripts') @endsection