initial commit

This commit is contained in:
Behzad Babaei
2020-03-28 17:02:54 +04:30
commit 851454db11
39 changed files with 946 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Jobs;
class ExampleJob extends Job
{
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
//
}
}