initial commit

This commit is contained in:
Zakwan Hamdan
2020-10-19 10:28:31 +08:00
commit 5c7bbe3a19
47 changed files with 6819 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()
{
//
}
}