-1

我在 App\Helpers 文件夹中有一个助手类名称 common.php。我想在这里使用 DB:: 外观来使用一些 db 表。在辅助方法中我的代码是 -

<?php

use DB;
function ref_number()
{
    $last_row = DB::table('model_table')->latest('id')->first();
    if($last_row) {
        $ref = explode('-', $last_row->ref);

        if($ref[0] === date('y')) {
            // if running year
            $ref = $ref[1] + 1;
            $ref = date('y') .'-'. $ref;
        }
        else{
            $ref = date('y') .'-'. 1; // if new year
        }
    }
    else{
        $ref = date('y') .'-'. 1; // if first data
    }

    return $ref;
}

但这不起作用。出现以下错误。

出现以下错误。

那么我该如何解决呢?

4

1 回答 1

0

将您的使用更改为:Illuminate\Support\Facades\DB;

于 2022-03-03T15:18:13.110 回答