Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP7 Decoder for ionCube Encoder)
- *
- * @ Version : 4.0.2.0
- * @ Author : DeZender
- * @ Release on : 06.04.2018
- * @ Official site : http://DeZender.Net
- *
- */
- namespace App;
- class Branch extends Illuminate\Database\Eloquent\Model
- {
- protected $fillable = ['profile_id', 'branch_name', 'map_address', 'latitude', 'longitude', 'business_hours', 'facilities'];
- protected $hidden = ['id'];
- public function profile()
- {
- return $this->belongsTo('App\\Profile');
- }
- public function app_sms_did_numbers()
- {
- return $this->hasMany('App\\App_sms_did_number');
- ...............................................................
- .................................
- ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement