| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace App\Http\Livewire;
- use Livewire\Component;
- class CalendarRemove extends Component
- {
- public $records;
- public $groups = [];
- public function render()
- {
-
- $this->records = [];
- $this->groups = [];
- $calendars = \App\Models\Calendar::orderBy('from')->get();
- foreach($calendars as $calendar)
- {
- $days = ['dom', 'lun', 'mar', 'mer', 'gio', 'ven', 'sab'];
- $dow = date('w', strtotime($calendar->from));
- $d = $days[$dow];
- $h = date('H:i', strtotime($calendar->from));
- // Elenco corsi per tipologia in base al calendario
- $courses = \App\Models\Course::where('name', $calendar->name)->where('date_from', '<=', $calendar->from)->where('date_to', '>=', $calendar->to)->pluck('id')->toArray();
- $months = date("n", strtotime($calendar->from));
- $members_count = \App\Models\MemberCourse::query()
- ->whereRaw("JSON_CONTAINS(`when`, JSON_OBJECT('day', JSON_ARRAY(?), 'from', ?), '$')", [$d, $h])
- ->whereRaw("JSON_CONTAINS(months, JSON_OBJECT('m', CAST(? AS UNSIGNED)), '$')", [$months])
- ->whereRaw("NOT JSON_CONTAINS(months, JSON_OBJECT('m', CAST(? AS UNSIGNED), 'status', 2), '$')", [$months])
- ->whereRaw("NOT JSON_CONTAINS(months, JSON_OBJECT('m', CAST(? AS UNSIGNED), 'status', '2'), '$')", [$months])
- ->whereIn('course_id', $courses)
- ->count();
-
- if ($members_count == 0)
- {
- $hour = date("H:i", strtotime($calendar->from));
- $x = $calendar->course->name . " " . $d . " " . $hour;
-
- if (!in_array($x, $this->groups))
- $this->groups[] = $x;
- $this->records[] = array('id' => $calendar->id, 'date' => date("d/m/Y", strtotime($calendar->from)), "name" => $calendar->name, "hour" => $hour, "day" => $d);
- }
- }
- return view('livewire.calendar_remove');
- }
- public function removeSelected($ids)
- {
- foreach($ids as $id)
- {
- \App\Models\Calendar::findOrFail($id)->delete();
- }
- return redirect()->to('/calendar_remove');
- }
- }
|