laraveldelhi / talks

We will be discussing and processing LaravelLive Delhi events task here. Create new issue in talk to propose a talk. :-)
0 stars 0 forks source link

Implementing of Task Scheduling #9

Open RathoreManpreet opened 5 years ago

RathoreManpreet commented 5 years ago

Laravel's command scheduler allows you to fluently and expressively define your command schedule within Laravel itself. When using the scheduler, only a single Cron entry is needed on your server. Your task schedule is defined in the app/Console/Kernel.php file's schedule method. To help you get started, a simple example is defined within the method.

For example: How can we send emails of very important reports to our email id on daily basis ? -> That can be possible by task scheduler. We can define the timing of a scheduler in which it send the reports to our email id on that time which we have defined

fahadkhan1740 commented 5 years ago

Can you please elaborate?

RathoreManpreet commented 5 years ago

Can you please elaborate? please check it