Mudanças entre as edições de "Laravel"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Linha 1: Linha 1:
 +
== apagando tabela
 +
# php artisan tinker
 +
# Schema::drop('your_table_name')
 +
# php artisan migrate
 +
 
== Estudar ==
 
== Estudar ==
 
* https://github.com/LaravelDaily/Laravel-User-Registration-Country-State-City
 
* https://github.com/LaravelDaily/Laravel-User-Registration-Country-State-City

Edição das 22h43min de 12 de dezembro de 2022

== apagando tabela

  1. php artisan tinker
  2. Schema::drop('your_table_name')
  3. php artisan migrate

Estudar

php artisan tinker
now();


How to to send mail using gmail in Laravel?

mudando padrão de timezone

  • Para alterar o padrão de horário, em config/app.php, altere
 'timezone' => 'UTC',

para

 'timezone' => 'America/Sao_Paulo',

forçando https

acrescente no arquivo app/Providers/AppServiceProvider.php

dentro da função boot

   public function boot()
   {
       \URL::forceScheme('https');

retirado de https://stackoverflow.com/questions/28402726/laravel-5-redirect-to-https/28403907#28403907

artisan

php artisan route:list - lista todas as rotas


Soft Deleting


Laravel MailCatcher

Auditável