<?php namespace App\Http\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class WebmasterFlow extends Model { use SoftDeletes; protected $table = 'webmaster_flow'; protected $primaryKey = 'id'; protected $guarded = []; }