芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/database/seeders/RolesSeeder.php
<?php namespace Database\Seeders; use Carbon\Carbon; use Illuminate\Support\Facades\DB; class RolesSeeder extends BaseSeeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('roles')->insert([ [ 'id' => 1, 'shop_id' => null, 'name' => 'Super Admin', 'description' => 'Super Admin can do anything over the application.', 'public' => 0, 'level' => 1, 'created_at' => Carbon::Now(), 'updated_at' => Carbon::Now(), ], [ 'id' => 2, 'shop_id' => null, 'name' => 'Admin', 'description' => 'Admins can do anything over the application. Just cant access Super Admin and other Admins information.', 'public' => 0, 'level' => 2, 'created_at' => Carbon::Now(), 'updated_at' => Carbon::Now(), ], [ 'id' => 3, 'shop_id' => null, 'name' => 'Merchant', 'description' => 'The owner of a shop. A merchant can control all contents under his/her shop.', 'public' => 0, 'level' => 3, 'created_at' => Carbon::Now(), 'updated_at' => Carbon::Now(), ], [ 'id' => 4, 'shop_id' => null, 'name' => 'Modaretor', 'description' => 'Can access all information except the shop settings in under his/her shop.', 'public' => 1, 'level' => 4, 'created_at' => Carbon::Now(), 'updated_at' => Carbon::Now(), ], [ 'id' => 5, 'shop_id' => null, 'name' => 'Order Handler', 'description' => 'Only can access order information under his/her shop.', 'public' => 1, 'level' => 5, 'created_at' => Carbon::Now(), 'updated_at' => Carbon::Now(), ], ]); } }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage