| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class ZapPageFormFields extends Model
- {
- use HasFactory;
- /**
- * The database table used by the model.
- *
- * @var string
- */
- protected $table = 'zap_page_form_fields';
- /**
- * The database primary key value.
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * Attributes that should be mass-assignable.
- *
- * @var array
- */
- protected $fillable = [
- 'zap_page_id',
- 'type',
- 'title',
- 'name',
- 'place_holder',
- ];
- }
|