溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用laravel-admin怎么自動生成模塊

發(fā)布時間:2021-05-24 16:26:04 來源:億速云 閱讀:238 作者:Leah 欄目:開發(fā)技術(shù)

本篇文章為大家展示了使用laravel-admin怎么自動生成模塊,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

一、模型創(chuàng)建、數(shù)據(jù)遷移、以及關(guān)聯(lián)模型控制器

$ php artisan make:model Brand -m  //創(chuàng)建模型并生成遷移文件
 
$ php artisan migrate  //運行遷移
 
$ php artisan admin:make BrandController --model=App\Brand  //創(chuàng)建關(guān)聯(lián)Brand模型的控制器

二、問題:創(chuàng)建模型后,會生成一個臨時文件(php artisan make:model Brand -m)

路徑:database/migrations/2018_10_16_0000_create_模型名s_table.php

在up方法中加入數(shù)據(jù)表應(yīng)有的字段,例如:

$table->text('content');

可用的字段類型

數(shù)據(jù)庫結(jié)構(gòu)生成器包含構(gòu)建表時可以指定的各種字段類型:

命令描述
$table->bigIncrements('id');遞增 ID(主鍵),相當于「UNSIGNED BIG INTEGER」
$table->bigInteger('votes');相當于 BIGINT
$table->binary('data');相當于 BLOB
$table->boolean('confirmed');相當于 BOOLEAN
$table->char('name', 4);相當于帶有長度的 CHAR
$table->date('created_at');相當于 DATE
$table->dateTime('created_at');相當于 DATETIME
$table->dateTimeTz('created_at');相當于帶時區(qū) DATETIME
$table->decimal('amount', 8, 2);相當于帶有精度與基數(shù) DECIMAL
$table->double('column', 8, 2);相當于帶有精度與基數(shù) DOUBLE
$table->enum('level', ['easy', 'hard']);相當于 ENUM
$table->float('amount', 8, 2);相當于帶有精度與基數(shù) FLOAT
$table->geometry('positions');相當于 GEOMETRY
$table->geometryCollection('positions');相當于 GEOMETRYCOLLECTION
$table->increments('id');遞增的 ID (主鍵),相當于「UNSIGNED INTEGER」
$table->integer('votes');相當于 INTEGER
$table->ipAddress('visitor');相當于 IP 地址
$table->json('options');相當于 JSON
$table->jsonb('options');相當于 JSONB
$table->lineString('positions');相當于 LINESTRING
$table->longText('description');相當于 LONGTEXT
$table->macAddress('device');相當于 MAC 地址
$table->mediumIncrements('id');遞增 ID (主鍵) ,相當于「UNSIGNED MEDIUM INTEGER」
$table->mediumInteger('votes');相當于 MEDIUMINT
$table->mediumText('description');相當于 MEDIUMTEXT
$table->morphs('taggable');相當于加入遞增的 taggable_id 與字符串 taggable_type
$table->multiLineString('positions');相當于 MULTILINESTRING
$table->multiPoint('positions');相當于 MULTIPOINT
$table->multiPolygon('positions');相當于 MULTIPOLYGON
$table->nullableMorphs('taggable');相當于可空版本的 morphs() 字段
$table->nullableTimestamps();相當于可空版本的 timestamps() 字段
$table->point('position');相當于 POINT
$table->polygon('positions');相當于 POLYGON
$table->rememberToken();相當于可空版本的 VARCHAR(100) 的 remember_token 字段
$table->smallIncrements('id');遞增 ID (主鍵) ,相當于「UNSIGNED SMALL INTEGER」
$table->smallInteger('votes');相當于 SMALLINT
$table->softDeletes();相當于為軟刪除添加一個可空的 deleted_at 字段
$table->softDeletesTz();相當于為軟刪除添加一個可空的 帶時區(qū)的 deleted_at 字段
$table->string('name', 100);相當于帶長度的 VARCHAR
$table->text('description');相當于 TEXT
$table->time('sunrise');相當于 TIME
$table->timeTz('sunrise');相當于帶時區(qū)的 TIME
$table->timestamp('added_on');相當于 TIMESTAMP
$table->timestampTz('added_on');相當于帶時區(qū)的 TIMESTAMP
$table->tinyIncrements('id');相當于自動遞增 UNSIGNED TINYINT
$table->tinyInteger('votes');相當于 TINYINT
$table->unsignedBigInteger('votes');相當于 Unsigned BIGINT
$table->unsignedDecimal('amount', 8, 2);相當于帶有精度和基數(shù)的 UNSIGNED DECIMAL
$table->unsignedInteger('votes');相當于 Unsigned INT
$table->unsignedMediumInteger('votes');相當于 Unsigned MEDIUMINT
$table->unsignedSmallInteger('votes');相當于 Unsigned SMALLINT
$table->unsignedTinyInteger('votes');相當于 Unsigned TINYINT
$table->uuid('id');相當于 UUID
$table->year('birth_year');相當于 YEAR

三、然后運行遷移和創(chuàng)建關(guān)聯(lián)的控制器

$ php artisan migrate  //運行遷移

$ php artisan admin:make BrandController --model=App\Brand  //創(chuàng)建關(guān)聯(lián)Brand模型的控制器

四、如果數(shù)據(jù)庫表結(jié)構(gòu)需要修改

如二步驟,修改完成,刪除migrations表中相關(guān)的那條記錄,并且刪除相關(guān)表

再次運行遷移,此方法適用于無數(shù)據(jù)的表,已有數(shù)據(jù)庫的表,請不要操作

$ php artisan migrate  //運行遷移

五、新創(chuàng)建的后臺模塊與后臺自帶的模塊不一樣

新創(chuàng)建:

使用laravel-admin怎么自動生成模塊

后他自帶:

使用laravel-admin怎么自動生成模塊

如果想改成后臺自帶這種樣式的,就必須得調(diào)用系統(tǒng)自帶的方法,如下:

1,先在需要添加的控制器中引入這些類:

use Encore\Admin\Show;
use Encore\Admin\Tree;
use Encore\Admin\Layout\Row;
use Encore\Admin\Widgets\Box;
use Encore\Admin\Facades\Admin;
use Encore\Admin\Layout\Column;

2,并且在index方法中,所有的替換成如下代碼:

return Admin::content(function (Content $content) {
 
   $content->header('Index');
   $content->description('description');
 
   $content->row(function (Row $row) {
 
    $row->column(6, $this->treeView()->render());
    $row->column(6, function (Column $column) {
     $form = new \Encore\Admin\Widgets\Form();
     $form->action(admin_base_path('/cate控制器名'));//控制器名
     $form->select('fid','父級欄目')->options(Cate控制器名::selectOptions());//控制器名
     $form->text('name','欄目名稱')->rules('required');//其他form根據(jù)情況自行修改
     $form->text('sort','排序')->rules('required');
     $form->text('jump_to','跳轉(zhuǎn)')->rules('required');;
     $form->hidden('_token')->default(csrf_token());
 
     $column->append((new Box(trans('admin.new'), $form))->style('success'));
    });
   });
  });

3,而且要在此控制器中添加如下方法:

/**
 * Make a treeView()
 *
 * @return tree
 */
protected function treeView()
{
 return Cate控制器名::tree(function (Tree $tree) {
  $tree->disableCreate();
  return $tree;
 });
}

4,在相關(guān)的model中添加如下方法和引用類:

//引用這兩個類
use Encore\Admin\Traits\AdminBuilder;
use Encore\Admin\Traits\ModelTree;
//并且添加這個方法
 
 use ModelTree, AdminBuilder;
 //字段自行修改
 protected $fillable = ['name','sort','fid','jump_to'];
 
 public function __construct(array $attributes = [])
 {
  parent::__construct($attributes);
 
  $this->setParentColumn('fid');
  $this->setOrderColumn('sort');
  $this->setTitleColumn('name');
 }

Laravel 是什么

Laravel 是一套簡潔、優(yōu)雅的PHP Web開發(fā)框架。它可以讓你從面條一樣雜亂的代碼中解脫出來;它可以幫你構(gòu)建一個完美的網(wǎng)絡(luò)APP,而且每行代碼都可以簡潔、富于表達力。

上述內(nèi)容就是使用laravel-admin怎么自動生成模塊,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI