Laravel Artisan make命令返回随机文件

ulydmbyx  于 2022-11-18  发布在  其他
关注(0)|答案(1)|浏览(106)

有点奇怪
今天我去运行下面的命令:php artisan make:model -m Document,没什么疯狂的,一直都是这样做的。但是,由于某种原因,由它生成的模型是一个完全随机的JSON字符串。

{
  "name": "@mdi/font",
  "version": "5.9.55",
  "description": "Dist for Material Design Webfont. This includes the Stock and Community icons in a single webfont collection.",
  "styl

我检查了同样生成的迁移文件,它提供了其他的东西(也是随机的)。所以我尝试运行一个composer update,然后重新运行命令,得到了这个:

<template>
  <div>
    <page-title :heading="heading" :subheading="subheading" :icon="icon"></page-title>
    <tabs :tabs="tabs" :currentTab="currentTab" :wrapper-class="'body-tabs shadow-tabs'"

感谢任何提示,我已经做了1.5-2年的Laravel,从来没有见过这个之前。

64jmpszr

64jmpszr1#

这个问题是通过将-m参数移到命令的末尾来解决的。有点奇怪,因为我去年一直在模型名称之前做这个操作,但是嘿,我会赢的!

相关问题