laravel-orm

    0熱度

    2回答

    在laravel項目中,控制器即時試圖顯示從數據庫中的意見和文件 我機能的研究是這樣的 public function show($id) { // with('comments')-> $shipment = Shipment::with('comments')->where('id','=', $id)->first(); // $shipment = Sh

    0熱度

    1回答

    我有一個包含類別表: Schema::create('categories',function($table){ $table->increments('id'); $table->string('name',25); $table->timestamps(); }); 和產品表: Schema::create('products',function($tabl

    0熱度

    2回答

    每天的好時光!我的問題的本質是這樣的: 有兩個模型聯繫人和PhoneNum!在模型的關係: use Illuminate\Database\Eloquent\Model; class Contact extends Model { protected $table = 'contacts'; public function phoneNums() {

    2熱度

    2回答

    我正在用示例解釋我的問題。 我的模特班是User,觀察員班是UserObserver。 我在updated方法UserObserver中添加了一些代碼,它會在每次使用User模型update函數時運行。例如updated方法在UserObserver(下面)中應該在User記錄中發生更新時調用。 class UserObserver{ function updated($userMode

    0熱度

    1回答

    我在Laravel CONCAT上遇到了一個問題,它沒有連接數據庫字段。當我檢查了返回的數據它沒有全名 public function getAllPlayers() { $data = Player::select(DB::raw('CONCAT(familyName," ",firstName) AS fullName')) ->orderBy('familyName'

    1熱度

    2回答

    我有一個是這樣的數據庫模式: user id name question id title answer id answer_text user_id question_id 現在我要選擇具有給定的每一個問題回答所有問題,用戶的所有用戶。 我用這種方式嘗試: 用戶模型 public function an

    -1熱度

    1回答

    一個簡單的MySQL表,即centers與Center作爲其模型,code作爲其中一列。 $center_found=Center::find(6); echo " code from method 1 = ".$center_found->code; echo " code from method 1 = ".$center_found['code']; echo " type = ".g