first commit

This commit is contained in:
2025-02-24 12:12:17 +03:00
parent bcef02b2ba
commit 685c734f6e
22 changed files with 627 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LunarMission extends Model
{
protected $casts = [
'missions' => 'array'
];
}