Answers for "date after laravel"

PHP
5

Date time format for laravel validation

$request->validate([
        'start_date' => 'date_format:d/m/Y',
        'end_date' => 'date_format:d/m/Y'
    ]);
Posted by: Guest on May-07-2020
1

insert date field automatically laravel

public $timestamps = true;
Posted by: Guest on June-08-2021
1

how set date for do work in laravel

//go to App\Console\Kernel
//for see all run the " php artisan schedule:list "
//for run that run the " php artisan schedule:work "
  
<?php

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Illuminate\Support\Facades\DB;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        //
    ];

    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $schedule->call(function () {
            DB::table('recent_users')->delete();
        })->daily();
    }
}
Posted by: Guest on June-14-2021

Code answers related to "date after laravel"

Browse Popular Code Answers by Language