.
This commit is contained in:
26
app/Company.php
Normal file
26
app/Company.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* Class Company
|
||||
*
|
||||
* @package App
|
||||
* @property integer $id
|
||||
* @property string $name
|
||||
* @property integer $monthly_payer
|
||||
* @mixin \Eloquent
|
||||
* @property \Carbon\Carbon|null $created_at
|
||||
* @property \Carbon\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Company whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Company whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Company whereMonthlyPayer($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Company whereName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Company whereUpdatedAt($value)
|
||||
*/
|
||||
class Company extends Model
|
||||
{
|
||||
//
|
||||
}
|
||||
Reference in New Issue
Block a user