Skip to content

Instantly share code, notes, and snippets.

<?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Attendant;
use App\Days;
use Session;
use Illuminate\Http\Request;
@segun6060
segun6060 / Attendant : Model
Created December 23, 2016 07:40
my error are always in two form 1.Undefined variable: attendants (View: C:\wamp\www\rccg_app\resources\views\attendant.blade.php) or 2.trying to get property of non-object
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Attendant extends Model {
//
// DEFINE RELATIONSHIPS --------------------------------------------------
// each attendant HAS one day
protected $table = 'attendants';