Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
32 lines
420 B
Plaintext
32 lines
420 B
Plaintext
<?php
|
|
|
|
namespace {{ namespace }};
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
class {{ class }}
|
|
{
|
|
use Dispatchable, Queueable;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
//
|
|
}
|
|
}
|