Jump to content
Fórum Script Brasil
  • 0

Testando uma função do Laravel sem o navegador


Frank K Hosaka

Question

Hoje estudei um pouco sobre validação, mas não queria usar o navegador, usei o terminal, ao invés de php artisan serve, usei o php artisan tinker.

a função é essa daqui:

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;

class Diario
{

    function teste(Request $request)
    {
        $dataValida = $request->validate(['dob' => [
            'required','date',
            'before_or_equal:' . now()->subYears(18)->format('Y-m-d')]]);
        return $dataValida;
    }
}

Depois de ativar o php artisan tinker, digitei o seguinte no terminal

 

 (new App\Http\Controllers\Diario)->teste(new Illuminate\Http\Request(['dob'=>'2006-09-28']));

Para chegar nessa sintaxe fiz várias consultas com a Gemini, e também um monte de tentativa e erro, mas eu gostei, bem mais prático do que mexer no web.php e ativar o server.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...