@extends('admin.layout') @section('title', 'Staff QR') @section('content')

Staff QR Code

{{ $employee->name }} • DP No: {{ $employee->dp_no }}

@php use SimpleSoftwareIO\QrCode\Facades\QrCode; @endphp
{!! QrCode::size(220)->generate((string) $employee->dp_no) !!}

Use this QR code or the DP number to let the staff log in and book meals.

Back
@endsection