Revision 2 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Models;use Illuminate\Database\Eloquent\Factories\HasFactory;use Illuminate\Database\Eloquent\Model;/*** App\Models\ShippingCountry** @property int $id* @property int|null $shipping_id* @property int|null $country_id* @property \Illuminate\Support\Carbon|null $created_at* @property \Illuminate\Support\Carbon|null $updated_at* @method static \Database\Factories\ShippingCountryFactory factory($count = null, $state = [])* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry newModelQuery()* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry newQuery()* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry query()* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereCountryId($value)* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereCreatedAt($value)* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereId($value)* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereShippingId($value)* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereUpdatedAt($value)* @mixin \Eloquent*/class ShippingCountry extends Model{use HasFactory;}