Exemplo n.º 1
0
Arquivo: MailG.php Projeto: gAb09/NetP
 public function getAll()
 {
     $collection = Mail::all();
     $collection->each(function ($model) use($collection) {
         $model = $this->completeModel($model);
     });
     return $collection;
 }