End year procedures implementation #111
|
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Actions\YearEndProcedures;
|
||||||
|
|
||||||
|
use App\Models\HistoricalSeat;
|
||||||
|
use App\Models\Seat;
|
||||||
|
use Carbon\Carbon;
|
||||||
|
|
||||||
|
class RecordHistoricalSeats
|
||||||
|
{
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function __invoke(): void
|
||||||
|
{
|
||||||
|
$this->saveSeats();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function saveSeats(): void
|
||||||
|
{
|
||||||
|
$seats = Seat::all();
|
||||||
|
foreach ($seats as $seat) {
|
||||||
|
$student_id = $seat->student->id;
|
||||||
|
$year = Carbon::now()->year;
|
||||||
|
$seat_description = $seat->ensemble->name.' - '.$seat->audition->name.' - '.$seat->seat;
|
||||||
|
HistoricalSeat::create([
|
||||||
|
'student_id' => $student_id,
|
||||||
|
'year' => $year,
|
||||||
|
'seat_description' => $seat_description,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -10,6 +10,8 @@ class HistoricalSeat extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
|
protected $guarded = [];
|
||||||
|
|
||||||
public function student(): BelongsTo
|
public function student(): BelongsTo
|
||||||
{
|
{
|
||||||
return $this->belongsTo(Student::class);
|
return $this->belongsTo(Student::class);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue