@extends('user.layout') @section('content')
{{ __('QR_Codes') }}
@if (count($qrcodes) == 0)

{{ __('NO_QR_CODE_FOUND') }}

@else
@foreach ($qrcodes as $key => $qrcode) @endforeach
{{ __('Name') }} {{ __('URL') }} {{ __('Qr_Code') }} {{ __('Actions') }}
{{ $qrcode->name }} {{ $qrcode->url }} {{ __('Download') }}
@csrf
@endif
@endsection