Structures

When you generate a model using Sketch, it follows Laravel's best practices and conventions. Here's how a generated model looks:

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\SoftDeletes;

class Post extends Model
{
    use HasFactory;
    use SoftDeletes; // If softDeletes: true in YAML

    /**
     * The attributes that are mass assignable.
     *
     * @var array<int, string>
     */
    protected $fillable = [
    
        'title',
        'content',
        'status'
        
    ];

    /**
     * The attributes that should be cast.
     *
     * @var array<string, string>
     */
    protected $casts = [
        'status' => 'string',
        'published_at' => 'datetime'
    ];

    // Relationships will be generated here
}

Last updated