home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
/
Console
➕ New
📤 Upload
✎ Editing:
RemindersTableCommand.php
← Back
<?php namespace Illuminate\Auth\Console; use Illuminate\Console\Command; use Illuminate\Filesystem\Filesystem; class RemindersTableCommand extends Command { /** * The console command name. * * @var string */ protected $name = 'auth:reminders-table'; /** * The console command description. * * @var string */ protected $description = 'Create a migration for the password reminders table'; /** * The filesystem instance. * * @var \Illuminate\Filesystem\Filesystem */ protected $files; /** * Create a new reminder table command instance. * * @param \Illuminate\Filesystem\Filesystem $files * @return void */ public function __construct(Filesystem $files) { parent::__construct(); $this->files = $files; } /** * Execute the console command. * * @return void */ public function fire() { $fullPath = $this->createBaseMigration(); $this->files->put($fullPath, $this->getMigrationStub()); $this->info('Migration created successfully!'); $this->call('dump-autoload'); } /** * Create a base migration file for the reminders. * * @return string */ protected function createBaseMigration() { $name = 'create_password_reminders_table'; $path = $this->laravel['path'].'/database/migrations'; return $this->laravel['migration.creator']->create($name, $path); } /** * Get the contents of the reminder migration stub. * * @return string */ protected function getMigrationStub() { $stub = $this->files->get(__DIR__.'/stubs/reminders.stub'); return str_replace('password_reminders', $this->getTable(), $stub); } /** * Get the password reminder table name. * * @return string */ protected function getTable() { return $this->laravel['config']->get('auth.reminder.table'); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel