mentors

mentors Git Source Tree


Root/app/models/Match.php

<?php

use Illuminate\Database\Eloquent\SoftDeletingTrait;

/**
* This model manages the matches between mentors and mentees
*/
class Match extends Eloquent
{
	protected $table = 'matches';

	protected $softDelete = true;

	protected $dates = ['deleted_at'];

	
}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.10735s using 11 queries.