add: model docblocks

- this resolves some larastan property issues but in return has revealed quite a few issues with our castings and such. baseline has been regenerated so we can work through them. The properties in docblocks are in order and match everything in DB schema wise.
This commit is contained in:
HDVinnie
2024-02-07 16:39:43 -05:00
parent b8a13ceb3f
commit 8a03bec818
95 changed files with 1489 additions and 9 deletions

View File

@@ -17,6 +17,15 @@ use App\Traits\Auditable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
/**
* App\Models\ApplicationImageProof.
*
* @property int $id
* @property int $application_id
* @property string $image
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
*/
class ApplicationImageProof extends Model
{
use Auditable;