HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1784574/task/1784574/cwd/app/Models/
Upload File :
Current File : //proc/1784574/task/1784574/cwd/app/Models/Country.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Country extends Model {

    public function zone() {
        return $this->belongsTo(Zone::class);
    }

    public function scopeIsEnabled($query) {
        return $query->where('status', '1');
    }
}