如何更好的组织你的Laravel模型
我经常发现自己希望在Laravel应用程序中获得更多关于模型的结构。
默认情况下,模型位于 App
命名空间内,如果你正在处理大型应用程序,这可能会变得非常难以理解。所以我决定在 App\Models
命名空间内组织我的模型。
更新用户模型
要做到这一点,你需要做的第一件事就是将 User
模型移动到 app/Models
目录并相应地更新命名空间。
这要求你更新引用 App\User
类的所有文件。
第一个是 config/auth.php
:
'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => App\Models\User::class, // 修改这里 ], ],
第二个是 config/services.php
文件:
'stripe' => [ 'model' => App\Models\User::class, // 修改这里 'key' => env('STRIPE_KEY'), 'secret' => env('STRIPE_SECRET'), ],
最后,修改 database/factories/UserFactory.php
文件:
$factory->define(App\Models\User::class, function (Faker $faker) { ... });
生成模型
现在我们已经改变了 User
模型的命名空间,但是如何生成新的模型。正如我们所知,默认情况下它们将被放置在 App
命名空间下。
为了解决这个问题,我们可以扩展默认的 ModelMakeCommand
:
<?php namespace App\Console\Commands; use Illuminate\Foundation\Console\ModelMakeCommand as Command; class ModelMakeCommand extends Command { /** * Get the default namespace for the class. * * @param string $rootNamespace * @return string */ protected function getDefaultNamespace($rootNamespace) { return "{$rootNamespace}\Models"; } }
并通过将以下内容添加到 AppServiceProvider
中来覆盖服务容器中的现有绑定:
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; use App\Console\Commands\ModelMakeCommand; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { // } /** * Register any application services. * * @return void */ public function register() { $this->app->extend('command.model.make', function ($command, $app) { return new ModelMakeCommand($app['files']); }); } }
以上就是需要修改的。现在我们可以继续生成模型,就像我们在我们的终端中使用的一样:php artisan make:model Order
,它们将位于 App\Models
命名空间中。
希望你能使用它!
更多PHP知识,可前往PHPCasts相关推荐
liuxudong00 2020-11-19
wwzaqw 2020-11-11
lihaoxiang 2020-11-05
CrossingX 2020-11-04
xuegangic 2020-10-17
86417413 2020-11-25
83206733 2020-11-19
86276537 2020-11-19
83266337 2020-11-19
86256434 2020-11-17
zhouboxiao 2020-11-16
rise 2020-11-22
sssdssxss 2020-11-20
windle 2020-11-10
孙雪峰 2020-10-30
85477104 2020-11-17
xfcyhades 2020-11-20
cheidou 2020-11-19