17 lines
299 B
PHP
17 lines
299 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Services;
|
||
|
|
|
||
|
|
class QrCodeService
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 모바일 점검 페이지 URL 생성
|
||
|
|
*/
|
||
|
|
public static function inspectionUrl(int $equipmentId): string
|
||
|
|
{
|
||
|
|
$baseUrl = rtrim(config('app.url'), '/');
|
||
|
|
|
||
|
|
return $baseUrl.'/m/inspect/'.$equipmentId;
|
||
|
|
}
|
||
|
|
}
|