/**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     Eloquent::unguard();
     Issues::create(['month' => Carbon::now()->month, 'year' => Carbon::now()->year, 'file' => Carbon::now()->month . Carbon::now()->year . 'pdf', 'cover' => Carbon::now()->month . Carbon::now()->year . 'Small.jpg']);
 }