Commit 90482899 by haojie

1

parent 8f72edc3
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Dcat\Admin\Models;
class TransferRecordTableSeede extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Models\Menu::insert(
[
[
"created_at" => "2023-01-09 11:04:21",
"extension" => "",
"icon" => NULL,
"id" => 13,
"order" => 13,
"parent_id" => 8,
"show" => 1,
"title" => "转账记录",
"updated_at" => "2023-01-09 11:04:21",
"uri" => '/transferRecord'
],
]
);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment