Пример #1
0
 /**
  * Creates attachment records, attaches them to the asset images pivot table,
  * and moves the uploaded file into it's stationary position (out of the temp folder).
  *
  * @return bool|\Stevebauman\Maintenance\Models\Attachment
  */
 public function create()
 {
     $this->dbStartTransaction();
     try {
         // Find the asset
         $asset = $this->asset->find($this->getInput('asset_id'));
         $uploadDir = $this->getInput('file_path');
         // Check if any files have been uploaded
         $files = $this->getInput('files');
         if ($uploadDir && $files) {
             $records = [];
             // For each file, create the attachment record, and sync asset image pivot table
             foreach ($files as $file) {
                 $insert = ['file_name' => $file, 'file_path' => $uploadDir . $file, 'user_id' => $this->sentry->getCurrentUserId()];
                 // Create the attachment record
                 $manual = $this->attachment->setInput($insert)->create();
                 // Attach the attachment record to the asset images
                 $asset->manuals()->attach($manual);
                 $records[] = $manual;
             }
             $this->dbCommitTransaction();
             // Return attachment record on success
             return $records;
         }
     } catch (\Exception $e) {
         $this->dbRollbackTransaction();
     }
     return false;
 }
Пример #2
0
 public function destroy($asset_id, $meter_id, $reading_id)
 {
     $asset = $this->asset->find($asset_id);
     $meter = $this->meter->find($meter_id);
     $this->meterReading->destroy($reading_id);
     $this->message = 'Successfully deleted reading';
     $this->messageType = 'success';
     $this->redirect = route('maintenance.assets.meters.show', [$asset->id, $meter->id]);
     return $this->response();
 }