Compare commits

..

No commits in common. "c03698fc0bd37a9fa7ae1d347e08be3b8eb12f4e" and "73b82a3cd40a5b6c3096c499b54bbfaf0fb4607e" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class LedgerController extends Controller
}
// 是否是彩票店数据上报
$isLotteryLedger = $user->store?->isLotteryStore();
$isLotteryLedger = $user->store->isLotteryStore();
$validated = $request->validate(
rules: [
@ -199,7 +199,7 @@ class LedgerController extends Controller
$items = [];
if ($user->store?->isLotteryStore()) {
if ($user->store->isLotteryStore()) {
/** @var \Illuminate\Database\Eloquent\Collection */
$lotteryTypes = Keyword::filter(['parent_key' => 'lottery_type'])
->oldest('sort')