35 lines
823 B
PHP
35 lines
823 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\BorrowTransaction;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ProcessBorrowTransaction implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public $data;
|
|
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
public function handle(): void
|
|
{
|
|
BorrowTransaction::create([
|
|
'anggota_id' => $this->data['anggota_id'],
|
|
'koleksi_id' => $this->data['koleksi_id'],
|
|
'tanggal_pinjam' => now(),
|
|
'tanggal_kembali' => now()->addDays(7),
|
|
'status' => 'dipinjam'
|
|
]);
|
|
}
|
|
}
|
|
|