'required|string', 'files.*.created_at' => 'required|string', 'files.*.filesize' => 'required|integer' ]; protected $listeners = ['hideDetails' => 'hideDetails', 'importError' => 'importError']; public function mount() { //$this->files = Import::all(); // this *SHOULD* be how it works, but...it doesn't? (note orderBy/get, below) //$this->forcerefresh = 0; $this->progress = -1; // '-1' means 'don't show the progressbar' $this->progress_bar_class = 'progress-bar-warning'; } public function hideMessages() { $this->message=''; } public function importError($errors) { \Log::info("Errors fired!!!!"); \Log::info(" Here they are...".print_r($errors,true)); $this->import_errors = $errors; } public function toggleEvent($id) { Log::error("toggled on: ".$id); $this->processDetails = Import::find($id); } public function hideDetails() { Log::error("hiding details!"); $this->processDetails = null; } public function destroy($id) { foreach($this->files as $file) { \Log::debug("File id is: ".$file->id); //\Log::debug("File is: ".print_r($file,true)); if($id == $file->id) { // FIXME - should I do a try/catch on this and use the file_delete_failure or whatever, if needed? \Log::debug("I FOUND IT!!!!"); Storage::delete('imports/'.$file->file_path); // FIXME - last time I ran this, it *didn't* delete the file?! $file->delete(); $this->message = trans('admin/hardware/message.import.file_delete_success'); $this->message_type = 'success'; // uhm, I mean, I guess? } } } public function render() { $this->files = Import::orderBy('id','desc')->get(); //HACK - slows down renders. return view('livewire.importer'); } }