sql >> データベース >  >> RDS >> Mysql

ユーザー入力に基づいてLaravelで新しいテーブルを作成しますか?

    use($newtableschema)を使用できます 変数をclosureに渡します :

    Schema::create($newtableschema['tablename'], function($table) use($newtableschema) {
    
        // So now you can access the $newtableschema variable here
        // Rest of your code...
    });
    


    1. Oracleでカンマ区切りの文字列を分割できない

    2. 返信でグループ化されたPHP/MySql選択コメント

    3. Laravel4のEloquent/モデルの関係

    4. IDに依存せずにMySQLの1行おきに選択しますか?