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