D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
eldiastypharmacy.com
/
app
/
Models
/
Filename :
DeliveryZipCode.php
back
Copy
<?php namespace App\Models; use Carbon\Carbon; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; /** * Class Zipcode * * @property int $id Primary * @property string $zipcode * @property Carbon $created_at * @property Carbon $updated_at * * @package App\Models */ class DeliveryZipCode extends Model { use HasFactory; protected $casts = [ 'id' => 'integer', 'zipcode' => 'string', 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; protected $fillable = [ 'zipcode', ]; }