repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Forms/SystemSetting.php
app/Admin/Forms/SystemSetting.php
<?php namespace App\Admin\Forms; use App\Models\BaseModel; use Dcat\Admin\Widgets\Form; use Illuminate\Support\Facades\Cache; class SystemSetting extends Form { /** * Handle the form request. * * @param array $input * * @return mixed */ public function handle(array $input) {...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Forms/EmailTest.php
app/Admin/Forms/EmailTest.php
<?php /** * The file was created by Assimon. * * @author ZhangYiQiu<me@zhangyiqiu.net> * @copyright ZhangYiQiu<me@zhangyiqiu.net> * @link http://zhangyiqiu.net/ */ namespace App\Admin\Forms; use App\Models\BaseModel; use Dcat\Admin\Widgets\Form; use Illuminate\Support\Facades\Cache; use Illuminate\Mail\...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Forms/ImportCarmis.php
app/Admin/Forms/ImportCarmis.php
<?php namespace App\Admin\Forms; use App\Models\Carmis; use App\Models\Goods; use Dcat\Admin\Widgets\Form; use Illuminate\Support\Facades\Storage; class ImportCarmis extends Form { /** * Handle the form request. * * @param array $input * * @return mixed */ public function handl...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Repositories/Order.php
app/Admin/Repositories/Order.php
<?php namespace App\Admin\Repositories; use App\Models\Order as Model; use Dcat\Admin\Repositories\EloquentRepository; class Order extends EloquentRepository { /** * Model. * * @var string */ protected $eloquentClass = Model::class; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Repositories/GoodsGroup.php
app/Admin/Repositories/GoodsGroup.php
<?php namespace App\Admin\Repositories; use App\Models\GoodsGroup as Model; use Dcat\Admin\Repositories\EloquentRepository; class GoodsGroup extends EloquentRepository { /** * Model. * * @var string */ protected $eloquentClass = Model::class; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Repositories/Emailtpl.php
app/Admin/Repositories/Emailtpl.php
<?php namespace App\Admin\Repositories; use App\Models\Emailtpl as Model; use Dcat\Admin\Repositories\EloquentRepository; class Emailtpl extends EloquentRepository { /** * Model. * * @var string */ protected $eloquentClass = Model::class; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Repositories/Pay.php
app/Admin/Repositories/Pay.php
<?php namespace App\Admin\Repositories; use App\Models\Pay as Model; use Dcat\Admin\Repositories\EloquentRepository; class Pay extends EloquentRepository { /** * Model. * * @var string */ protected $eloquentClass = Model::class; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Repositories/Coupon.php
app/Admin/Repositories/Coupon.php
<?php namespace App\Admin\Repositories; use App\Models\Coupon as Model; use Dcat\Admin\Repositories\EloquentRepository; class Coupon extends EloquentRepository { /** * Model. * * @var string */ protected $eloquentClass = Model::class; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Repositories/Carmis.php
app/Admin/Repositories/Carmis.php
<?php namespace App\Admin\Repositories; use App\Models\Carmis as Model; use Dcat\Admin\Repositories\EloquentRepository; class Carmis extends EloquentRepository { /** * Model. * * @var string */ protected $eloquentClass = Model::class; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Admin/Repositories/Goods.php
app/Admin/Repositories/Goods.php
<?php namespace App\Admin\Repositories; use App\Models\Goods as Model; use Dcat\Admin\Repositories\EloquentRepository; class Goods extends EloquentRepository { /** * Model. * * @var string */ protected $eloquentClass = Model::class; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Console/Kernel.php
app/Console/Kernel.php
<?php namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [ // ]; ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/Order.php
app/Models/Order.php
<?php namespace App\Models; use App\Events\OrderUpdated; use Illuminate\Database\Eloquent\SoftDeletes; class Order extends BaseModel { use SoftDeletes; protected $table = 'orders'; /** * 待支付 */ const STATUS_WAIT_PAY = 1; /** * 待处理 */ const STATUS_PENDING = 2; /** ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/GoodsGroup.php
app/Models/GoodsGroup.php
<?php namespace App\Models; use App\Events\GoodsGroupDeleted; use Illuminate\Database\Eloquent\SoftDeletes; class GoodsGroup extends BaseModel { use SoftDeletes; protected $table = 'goods_group'; protected $dispatchesEvents = [ 'deleted' => GoodsGroupDeleted::class ]; /** * 关联商品...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/Emailtpl.php
app/Models/Emailtpl.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Database\Eloquent\Model; class Emailtpl extends Model { use SoftDeletes; protected $table = 'emailtpls'; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/Pay.php
app/Models/Pay.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Database\Eloquent\Model; class Pay extends BaseModel { use SoftDeletes; protected $table = 'pays'; /** * 跳转 */ const METHOD_JUMP = 1; /** * 扫码 */ const METHOD_SCAN = 2; /** ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/BaseModel.php
app/Models/BaseModel.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Models; use Illuminate\Database\Eloquent\Model; class BaseModel extends Model { const STATUS_OPEN = 1; // 状态开启 const STATUS_CLOSE = 0; ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/Coupon.php
app/Models/Coupon.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\SoftDeletes; class Coupon extends BaseModel { use SoftDeletes; protected $table = 'coupons'; /** * 一次性使用 */ const TYPE_ONE_TIME = 1; /** * 重复使用 */ const TYPE_REPEAT = 2; /** * 未使用 */ const ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/Carmis.php
app/Models/Carmis.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\SoftDeletes; class Carmis extends BaseModel { use SoftDeletes; protected $table = 'carmis'; /** * 未售出 */ const STATUS_UNSOLD = 1; /** * 已售出 */ const STATUS_SOLD = 2; /** * 获取组建映射 * * @retu...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Models/Goods.php
app/Models/Goods.php
<?php namespace App\Models; use App\Events\GoodsDeleted; use Illuminate\Database\Eloquent\SoftDeletes; class Goods extends BaseModel { use SoftDeletes; protected $table = 'goods'; protected $dispatchesEvents = [ 'deleted' => GoodsDeleted::class ]; /** * 关联分类 * * @retur...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Providers/BroadcastServiceProvider.php
app/Providers/BroadcastServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\Facades\Broadcast; use Illuminate\Support\ServiceProvider; class BroadcastServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { Broadcast::routes();...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Providers/RouteServiceProvider.php
app/Providers/RouteServiceProvider.php
<?php namespace App\Providers; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; use Illuminate\Support\Facades\Route; class RouteServiceProvider extends ServiceProvider { /** * This namespace is applied to your controller routes. * * In addition, it is set as th...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Providers/EventServiceProvider.php
app/Providers/EventServiceProvider.php
<?php namespace App\Providers; use App\Events\GoodsDeleted; use App\Events\GoodsGroupDeleted; use App\Events\OrderUpdated; use Illuminate\Auth\Events\Registered; use Illuminate\Auth\Listeners\SendEmailVerificationNotification; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Il...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Providers/AppServiceProvider.php
app/Providers/AppServiceProvider.php
<?php namespace App\Providers; use App\Service\CarmisService; use App\Service\CouponService; use App\Service\EmailtplService; use App\Service\GoodsService; use App\Service\OrderProcessService; use App\Service\OrderService; use App\Service\PayService; use Illuminate\Support\ServiceProvider; use Jenssegers\Agent\Agent;...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Providers/AuthServiceProvider.php
app/Providers/AuthServiceProvider.php
<?php namespace App\Providers; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; use Illuminate\Support\Facades\Gate; class AuthServiceProvider extends ServiceProvider { /** * The policy mappings for the application. * * @var array */ protected $policies ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Events/GoodsGroupDeleted.php
app/Events/GoodsGroupDeleted.php
<?php namespace App\Events; use App\Models\GoodsGroup; use Illuminate\Broadcasting\Channel; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Illuminate\Foundation\Events...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Events/GoodsDeleted.php
app/Events/GoodsDeleted.php
<?php namespace App\Events; use App\Models\Goods; use Illuminate\Broadcasting\Channel; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Illuminate\Foundation\Events\Disp...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Events/OrderUpdated.php
app/Events/OrderUpdated.php
<?php namespace App\Events; use App\Models\Order; use Illuminate\Broadcasting\Channel; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Illuminate\Foundation\Events\Disp...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Service/OrderService.php
app/Service/OrderService.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Service; use App\Exceptions\RuleValidationException; use App\Models\BaseModel; use App\Models\Coupon; use App\Models\Goods; use App\Models\Carmi...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Service/CarmisService.php
app/Service/CarmisService.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Service; use App\Models\Carmis; class CarmisService { /** * 通过商品查询一些数量未使用的卡密 * * @param int $goodsID 商品id * @param int...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Service/GoodsService.php
app/Service/GoodsService.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Service; use App\Exceptions\RuleValidationException; use App\Models\Carmis; use App\Models\Goods; use App\Models\GoodsGroup; /** * 商品服务层 * *...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Service/EmailtplService.php
app/Service/EmailtplService.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Service; use App\Models\Emailtpl; class EmailtplService { /** * 通过邮件标识获得邮件模板 * * @param string $token 邮件标识 * @return E...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Service/OrderProcessService.php
app/Service/OrderProcessService.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Service; use App\Exceptions\RuleValidationException; use App\Jobs\ApiHook; use App\Jobs\MailSend; use App\Jobs\OrderExpired; use App\Jobs\ServerJ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Service/PayService.php
app/Service/PayService.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Service; use App\Models\Pay; class PayService { /** * 加载支付网关 * * @param string|int $payClient 支付场景客户端 * @return array|...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/app/Service/CouponService.php
app/Service/CouponService.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ namespace App\Service; use App\Models\Coupon; class CouponService { /** * 获得优惠码,通过商品关联 * * @param string $coupon 优惠码 * @param int $g...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/bootstrap/app.php
bootstrap/app.php
<?php /* |-------------------------------------------------------------------------- | Create The Application |-------------------------------------------------------------------------- | | The first thing we will do is create a new Laravel application instance | which serves as the "glue" for all the components of La...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/tests/TestCase.php
tests/TestCase.php
<?php namespace Tests; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { use CreatesApplication; }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/tests/CreatesApplication.php
tests/CreatesApplication.php
<?php namespace Tests; use Illuminate\Contracts\Console\Kernel; trait CreatesApplication { /** * Creates the application. * * @return \Illuminate\Foundation\Application */ public function createApplication() { $app = require __DIR__.'/../bootstrap/app.php'; $app->make...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/tests/Feature/ExampleTest.php
tests/Feature/ExampleTest.php
<?php namespace Tests\Feature; use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class ExampleTest extends TestCase { /** * A basic test example. * * @return void */ public function testBasicTest() { $response = $this->get('/'); $response->assertS...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/tests/Unit/ExampleTest.php
tests/Unit/ExampleTest.php
<?php namespace Tests\Unit; use PHPUnit\Framework\TestCase; class ExampleTest extends TestCase { /** * A basic test example. * * @return void */ public function testBasicTest() { $this->assertTrue(true); } }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/routes/web.php
routes/web.php
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/routes/channels.php
routes/channels.php
<?php /* |-------------------------------------------------------------------------- | Broadcast Channels |-------------------------------------------------------------------------- | | Here you may register all of the event broadcasting channels that your | application supports. The given channel authorization callba...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/routes/api.php
routes/api.php
<?php use Illuminate\Http\Request; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServicePr...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/routes/console.php
routes/console.php
<?php use Illuminate\Foundation\Inspiring; /* |-------------------------------------------------------------------------- | Console Routes |-------------------------------------------------------------------------- | | This file is where you may define all of your Closure based console | commands. Each Closure is bou...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/routes/common/web.php
routes/common/web.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ use Illuminate\Support\Facades\Route; Route::group(['middleware' => ['dujiaoka.boot'],'namespace' => 'Home'], function () { // 首页 Route::get('/', 'Home...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/routes/common/pay.php
routes/common/pay.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ use Illuminate\Support\Facades\Route; Route::get('pay-gateway/{handle}/{payway}/{orderSN}', 'PayController@redirectGateway'); // 支付相关 Route::group(['prefix' =>...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/public/index.php
public/index.php
<?php /** * Laravel - A PHP Framework For Web Artisans * * @package Laravel * @author Taylor Otwell <taylor@laravel.com> */ define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Auto Loader |------------------------------------...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/app.php
config/app.php
<?php return [ /* |-------------------------------------------------------------------------- | Application Name |-------------------------------------------------------------------------- | | This value is the name of your application. This value is used when the | framework needs to plac...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/logging.php
config/logging.php
<?php use Monolog\Handler\NullHandler; use Monolog\Handler\StreamHandler; use Monolog\Handler\SyslogUdpHandler; return [ /* |-------------------------------------------------------------------------- | Default Log Channel |-------------------------------------------------------------------------- ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/session.php
config/session.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Session Driver |-------------------------------------------------------------------------- | | This option controls the default session "driver" that will be use...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/queue.php
config/queue.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Queue Connection Name |-------------------------------------------------------------------------- | | Laravel's queue API supports an assortment of back-ends via a single | API, giving y...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/geetest.php
config/geetest.php
<?php return [ /* |-------------------------------------------------------------------------- | Config Language |-------------------------------------------------------------------------- | | Here you can config your yunpian api key from yunpian provided. | | Options: ['zh-cn', 'zh-tw', 'en', 'ja', 'ko'] | *...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/cache.php
config/cache.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Cache Store |-------------------------------------------------------------------------- | | This option controls the default cache connection that gets used whil...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/admin.php
config/admin.php
<?php return [ /* |-------------------------------------------------------------------------- | dcat-admin name |-------------------------------------------------------------------------- | | This value is the name of dcat-admin, This setting is displayed on the | login page. | */ ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/dujiaoka.php
config/dujiaoka.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ return [ 'dujiaoka_version' => '2.0.6', // 模板集合 'templates' => [ 'unicorn' => '官方[unicorn-独角兽]', 'luna' => 'Luna[Julyssn]', ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/hashing.php
config/hashing.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Hash Driver |-------------------------------------------------------------------------- | | This option controls the default hash driver that will be used to hash | passwords for your ap...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/view.php
config/view.php
<?php return [ /* |-------------------------------------------------------------------------- | View Storage Paths |-------------------------------------------------------------------------- | | Most templating systems load templates from disk. Here you may specify | an array of paths that...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/database.php
config/database.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Database Connection Name |-------------------------------------------------------------------------- | | Here you may specify which of the database connections b...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/services.php
config/services.php
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Mailgun, Postmark...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/filesystems.php
config/filesystems.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | Here you may specify the default filesystem disk that should be used | by the framework. T...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/mail.php
config/mail.php
<?php return [ /* |-------------------------------------------------------------------------- | Mail Driver |-------------------------------------------------------------------------- | | Laravel supports both SMTP and PHP's "mail" function as drivers for the | sending of e-mail. You may s...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/broadcasting.php
config/broadcasting.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Broadcaster |-------------------------------------------------------------------------- | | This option controls the default broadcaster that will be used by the | framework when an even...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/config/auth.php
config/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for y...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/database/seeds/OrderTableSeeder.php
database/seeds/OrderTableSeeder.php
<?php use Illuminate\Database\Seeder; class OrderTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { factory(\App\Models\Order::class, 50)->create(); } }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/database/seeds/DatabaseSeeder.php
database/seeds/DatabaseSeeder.php
<?php use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { $this->call(OrderTableSeeder::class); } }
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/database/factories/OrderFactory.php
database/factories/OrderFactory.php
<?php /** @var \Illuminate\Database\Eloquent\Factory $factory */ use App\Model; use Faker\Generator as Faker; use Illuminate\Support\Str; $factory->define(\App\Models\Order::class, function (Faker $faker) { return [ 'order_sn' => strtoupper(Str::random(12)), 'goods_id' => rand(1, 3), 'cou...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/en/passwords.php
resources/lang/en/passwords.php
<?php return [ /* |-------------------------------------------------------------------------- | Password Reset Language Lines |-------------------------------------------------------------------------- | | The following language lines are the default lines which match reasons | that are gi...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/en/admin.php
resources/lang/en/admin.php
<?php return [ 'scaffold' => [ 'header' => 'Scaffold', 'choose' => 'choose', 'table' => 'Table', 'model' => 'Model', 'controller' => 'Controller', 'repository' => 'Repository', 'add_field' =>...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/en/pagination.php
resources/lang/en/pagination.php
<?php return [ /* |-------------------------------------------------------------------------- | Pagination Language Lines |-------------------------------------------------------------------------- | | The following language lines are used by the paginator library to build | the simple pag...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/en/validation.php
resources/lang/en/validation.php
<?php return [ /* |-------------------------------------------------------------------------- | Validation Language Lines |-------------------------------------------------------------------------- | | The following language lines contain the default error messages used by | the validator ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/en/auth.php
resources/lang/en/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Language Lines |-------------------------------------------------------------------------- | | The following language lines are used during authentication for various | messages t...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/goods.php
resources/lang/zh_CN/goods.php
<?php return [ 'labels' => [ 'Goods' => '商品', 'goods' => '商品', ], 'fields' => [ 'actual_price' => '实际售价', 'group_id' => '所属分类', 'api_hook' => '回调事件', 'buy_prompt' => '购买提示', 'description' => '商品描述', 'gd_name' => '商品名称', 'gd_description...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/emailtpl.php
resources/lang/zh_CN/emailtpl.php
<?php return [ 'labels' => [ 'Emailtpl' => '邮件模板', 'emailtpl' => '邮件模板', ], 'fields' => [ 'tpl_name' => '邮件标题', 'tpl_content' => '邮件内容', 'tpl_token' => '邮件标识', ], 'options' => [ ], ];
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/menu.php
resources/lang/zh_CN/menu.php
<?php return [ 'titles' => [ 'index' => '主页', 'admin' => '系统', 'users' => '管理员', 'roles' => '角色', 'permission' => '权限', 'menu' => '菜单', 'operation_log' => '操作日志', 'helpers' => '开发工具', 'extensio...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/goods-group.php
resources/lang/zh_CN/goods-group.php
<?php return [ 'labels' => [ 'GoodsGroup' => '分类', 'goods-group' => '分类', ], 'fields' => [ 'gp_name' => '分类名称', 'is_open' => '是否启用', 'ord' => '排序权重 越大越靠前', ], 'options' => [ ], ];
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/hyper.php
resources/lang/zh_CN/hyper.php
<?php return [ # Hyper Theme 'notice_announcement' => '公告', 'error_back_btn' => '返回', 'error_error' => '错误', 'order_search' => '查询订单', 'global_currency' => '¥', # home.blade.php 'home_title' => '主页', 'home_search_box' => '输入关键词搜索...',...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/admin.php
resources/lang/zh_CN/admin.php
<?php return [ 'scaffold' => [ 'header' => '代码生成器', 'choose' => '选择已有数据表', 'table' => '表名', 'model' => '模型', 'controller' => '控制器', 'repository' => '数据仓库', 'add_field' => '添加字段', 'pk'...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/dujiaoka.php
resources/lang/zh_CN/dujiaoka.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ return [ 'official_website' => '官网', 'dashboard' => '仪表盘', 'dashboard_description' => '每个梦想的路上,一起前行....!', 'join_qq_group' => '加入qq群', 'join...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/global.php
resources/lang/zh_CN/global.php
<?php return [ 'fields' => [ 'id' => 'ID', 'name' => '名称', 'username' => '用户名', 'email' => '邮箱', 'http_path' => 'HTTP路径', 'password' => '密码', 'password_confirmation' => ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/order.php
resources/lang/zh_CN/order.php
<?php return [ 'labels' => [ 'Order' => '订单', 'order' => '订单', ], 'fields' => [ 'actual_price' => '实际支付价格', 'buy_amount' => '购买数量', 'buy_ip' => '购买者下单IP地址', 'coupon_discount_price' => '优惠码优惠价格', 'coupon_id' => '优惠码', 'email' => '下单邮箱', ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/extension.php
resources/lang/zh_CN/extension.php
<?php return [ 'labels' => [ 'Extensions' => '扩展', ], 'fields' => [ 'alias' => '别名', 'description' => '描述', 'authors' => '开发者', 'homepage' => '主页', 'require' => '依赖', 'require_dev' => '开发环境依赖', 'name' => '包名', '...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/luna.php
resources/lang/zh_CN/luna.php
<?php return [ //luna模板 'home_choice_cate' => '选择分类', 'home_choice_goods' => '选择商品', 'order_search_m' => '查单', 'goods_num' => '商品数量', 'goods_disc_1' => '满', 'goods_disc_2' => '个 单价', 'goods_disc_3' => '元/件', 'goods_surplus' => '剩余', 'goods_unit' => '件', 'buy_goods_msg' => ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/pay.php
resources/lang/zh_CN/pay.php
<?php return [ 'labels' => [ 'Pay' => '支付通道', 'pay' => '支付通道', ], 'fields' => [ 'merchant_id' => '商户 ID', 'merchant_key' => '商户 KEY', 'merchant_pem' => '商户密钥', 'pay_check' => '支付标识', 'pay_client' => '支付场景', 'pay_handleroute' => '支付处理路由', ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/coupon.php
resources/lang/zh_CN/coupon.php
<?php return [ 'labels' => [ 'Coupon' => '优惠码', 'coupon' => '优惠码', ], 'fields' => [ 'type' => '优惠类型', 'discount' => '优惠金额', 'is_use' => '是否已经使用', 'is_open' => '是否启用', 'coupon' => '优惠码', 'ret' => '剩余使用次数', 'type_one_time' => '一次性使用', ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/email-test.php
resources/lang/zh_CN/email-test.php
<?php /** * The file was created by Assimon. * * @author ZhangYiQiu<me@zhangyiqiu.net> * @copyright ZhangYiQiu<me@zhangyiqiu.net> * @link http://zhangyiqiu.net/ */ return [ 'labels' => [ 'success' => '发送成功', 'to' => '收件人', 'title' => '邮件标题', 'body' => '邮件内容', ], ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/system-setting.php
resources/lang/zh_CN/system-setting.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ return [ 'labels' => [ 'SystemSetting' => '系统设置', 'system_setting' => '系统设置', 'base_setting' => '基本设置', 'mail_setting' => '邮...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_CN/carmis.php
resources/lang/zh_CN/carmis.php
<?php return [ 'labels' => [ 'Carmis' => '卡密', 'carmis' => '卡密', ], 'fields' => [ 'goods_id' => '所属商品', 'status' => '状态', 'carmi' => '卡密内容', 'status_unsold' => '未售出', 'status_sold' => '已售出', 'is_loop' => '循环卡密', 'yes'=>'是', 'import_c...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/goods.php
resources/lang/zh_TW/goods.php
<?php return [ 'labels' => [ 'Goods' => '商品', 'goods' => '商品', ], 'fields' => [ 'actual_price' => '實際售價', 'group_id' => '所屬分類', 'api_hook' => '回調事件', 'buy_prompt' => '購買提示', 'description' => '商品描述', 'gd_name' => '商品名稱', 'gd_description...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/emailtpl.php
resources/lang/zh_TW/emailtpl.php
<?php return [ 'labels' => [ 'Emailtpl' => '郵件模板', 'emailtpl' => '郵件模板', ], 'fields' => [ 'tpl_name' => '郵件標題', 'tpl_content' => '郵件內容', 'tpl_token' => '郵件標識', ], 'options' => [ ], ];
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/menu.php
resources/lang/zh_TW/menu.php
<?php return [ 'titles' => [ 'index' => '首頁', 'admin' => '系統', 'users' => '管理員', 'roles' => '角色', 'permission' => '權限', 'menu' => '選單', 'operation_log' => '動作日誌', 'helpers' => '開發工具', 'extensio...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/goods-group.php
resources/lang/zh_TW/goods-group.php
<?php return [ 'labels' => [ 'GoodsGroup' => '分類', 'goods-group' => '分類', ], 'fields' => [ 'gp_name' => '分類名稱', 'is_open' => '是否啟用', 'ord' => '排序權重 越大越靠前', ], 'options' => [ ], ];
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/hyper.php
resources/lang/zh_TW/hyper.php
<?php return [ # Hyper Theme 'notice_announcement' => '公告', 'error_back_btn' => '返回', 'error_error' => '錯誤', 'order_search' => '查詢訂單', 'global_currency' => '$', # home.blade.php 'home_title' => '首頁', 'home_search_box' => '輸入關鍵詞搜尋...',...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/admin.php
resources/lang/zh_TW/admin.php
<?php return [ 'scaffold' => [ 'header' => '代碼生成器', 'choose' => '選取已有數據表', 'table' => '表名', 'model' => '模型', 'controller' => '控製器', 'repository' => '數據倉庫', 'add_field' => '加入欄位', 'pk'...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/dujiaoka.php
resources/lang/zh_TW/dujiaoka.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ return [ 'official_website' => '官網', 'dashboard' => '儀表盤', 'dashboard_description' => '每個夢想的路上,一起前行....!', 'join_qq_group' => '加入qq群', 'join...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/global.php
resources/lang/zh_TW/global.php
<?php return [ 'fields' => [ 'id' => 'ID', 'name' => '名稱', 'username' => '賬戶', 'email' => '信箱', 'http_path' => 'HTTP路徑', 'password' => '密碼', 'password_confirmation' => '...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/order.php
resources/lang/zh_TW/order.php
<?php return [ 'labels' => [ 'Order' => '訂單', 'order' => '訂單', ], 'fields' => [ 'actual_price' => '實際支付價格', 'buy_amount' => '購買數量', 'buy_ip' => '購買者下單IP地址', 'coupon_discount_price' => '折扣碼折扣價格', 'coupon_id' => '折扣碼', 'email' => '下單信箱', ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/extension.php
resources/lang/zh_TW/extension.php
<?php return [ 'labels' => [ 'Extensions' => '擴展', ], 'fields' => [ 'alias' => '別名', 'description' => '描述', 'authors' => '開發者', 'homepage' => '首頁', 'require' => '依賴', 'require_dev' => '開發環境依賴', 'name' => '包名', '...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/luna.php
resources/lang/zh_TW/luna.php
<?php return [ //luna模板 'home_choice_cate' => '選取分類', 'home_choice_goods' => '選取商品', 'order_search_m' => '查單', 'goods_num' => '商品數量', 'goods_disc_1' => '滿', 'goods_disc_2' => '個 單價', 'goods_disc_3' => '元/件', 'goods_surplus' => '剩余', 'goods_unit' => '件', 'buy_goods_msg' => ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/pay.php
resources/lang/zh_TW/pay.php
<?php return [ 'labels' => [ 'Pay' => '支付通道', 'pay' => '支付通道', ], 'fields' => [ 'merchant_id' => '商戶 ID', 'merchant_key' => '商戶 KEY', 'merchant_pem' => '商戶金鑰', 'pay_check' => '支付標識', 'pay_client' => '支付場景', 'pay_handleroute' => '支付處理路由', ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/coupon.php
resources/lang/zh_TW/coupon.php
<?php return [ 'labels' => [ 'Coupon' => '折扣碼', 'coupon' => '折扣碼', ], 'fields' => [ 'type' => '折扣類型', 'discount' => '折扣金額', 'is_use' => '是否已經使用', 'is_open' => '是否啟用', 'coupon' => '折扣碼', 'ret' => '剩余使用次數', 'type_one_time' => '一次性使用', ...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false
assimon/dujiaoka
https://github.com/assimon/dujiaoka/blob/8bb5701ecfc1d2a45cf4bef119e3e4496170002d/resources/lang/zh_TW/system-setting.php
resources/lang/zh_TW/system-setting.php
<?php /** * The file was created by Assimon. * * @author assimon<ashang@utf8.hk> * @copyright assimon<ashang@utf8.hk> * @link http://utf8.hk/ */ return [ 'labels' => [ 'SystemSetting' => '系統設定', 'system_setting' => '系統設定', 'base_setting' => '基本設定', 'mail_setting' => '信...
php
MIT
8bb5701ecfc1d2a45cf4bef119e3e4496170002d
2026-01-04T15:03:57.345282Z
false