mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
525 lines
26 KiB
PHP
525 lines
26 KiB
PHP
<?php
|
||
|
||
namespace App\Http\Controllers;
|
||
|
||
use Illuminate\Http\Request;
|
||
use \App\Notifications\mail;
|
||
use \App\Notifications\sms;
|
||
use \App\Notifications\Alert;
|
||
use \App\Log;
|
||
use \App\Schedule;
|
||
use \App\Local;
|
||
use \App\User;
|
||
use Carbon\Carbon;
|
||
|
||
|
||
class CalendarController extends Controller
|
||
{
|
||
/**
|
||
* Create a new controller instance.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function __construct()
|
||
{
|
||
$this->middleware('auth', ['except' => ['generate','load','delete']]);
|
||
}
|
||
|
||
/**
|
||
* Show the application dashboard.
|
||
*
|
||
* @return \Illuminate\Http\Response
|
||
*/
|
||
public function index()
|
||
{
|
||
Log::saveLog("Affichage de l'horaire");
|
||
|
||
return view('admin.calendar.calendar_display');
|
||
}
|
||
|
||
public function generate()
|
||
{
|
||
$lang = str_replace('_', '-', app()->getLocale());
|
||
setlocale(LC_ALL, $lang.'_'.strtoupper($lang).'.utf8','fra');
|
||
|
||
$month = request('month');
|
||
$year = request('year');
|
||
|
||
$nextMonth = $month + 1;
|
||
$nextYear = $year;
|
||
|
||
if ($nextMonth > 12) {
|
||
$nextMonth = 1;
|
||
$nextYear = $nextYear + 1;
|
||
}
|
||
|
||
$prevMonth = $month - 1;
|
||
$prevYear = $year;
|
||
|
||
if ($prevMonth < 1) {
|
||
$prevMonth = 12;
|
||
$prevYear = $prevYear - 1;
|
||
}
|
||
|
||
$calendar = array();
|
||
|
||
$dayinmonth = cal_days_in_month(CAL_GREGORIAN, $month, $year);
|
||
|
||
$firstdaymonth = date("w", strtotime("01-".$month."-".$year));
|
||
|
||
$addingday = 0;
|
||
|
||
for ($i=$firstdaymonth ; $addingday < $dayinmonth ; $i++) {
|
||
$addingday = $addingday + 1;
|
||
$calendar[$i] = $addingday;
|
||
}
|
||
|
||
echo '<div class="table calendar">';
|
||
echo '<div class="thead-dark">';
|
||
echo '<div class="row"><div class="col-2"><a class="btn" onclick="generate('.$prevMonth.','.$prevYear.')"><i class="fa fa-chevron-left" aria-hidden="true"></i></a></div><div class="col-8">'.ucfirst(strftime("%B %Y", strtotime("01-".$month."-".$year))).'</div><div class="col-2"><a class="btn" onclick="generate('.$nextMonth.','.$nextYear.')"><i class="fa fa-chevron-right" aria-hidden="true"></i></a></div></div>';
|
||
echo '<div class="row calendar-head"><div style="width:14%;">Dimanche</div><div style="width:14%;">Lundi</div><div style="width:14%;">Mardi</div><div style="width:14%;">Mercredi</div><div style="width:14%;">Jeudi</div><div style="width:14%;">Vendredi</div><div style="width:14%;">Samedi</div></div>';
|
||
echo '</div>';
|
||
echo '<div class="card-body">';
|
||
for ($i=0; $i < 6 ; $i++)
|
||
{
|
||
echo '<div class="row">';
|
||
for ($a=0; $a < 7 ; $a++)
|
||
{
|
||
if (isset($calendar[(($i*7) + $a)]))
|
||
{
|
||
/** Date info */
|
||
$today = date("Y-m-d", strtotime($year."-".$month."-".$calendar[(($i*7) + $a)]));
|
||
$activityToday = Schedule::where('date','=',$today)->get();
|
||
|
||
/** If nothing today */
|
||
if ($activityToday->isEmpty()) {
|
||
echo '<a class="calendar-container calendar-empty" name="'.$today.'" type="button" data-toggle="modal" data-target="#scrollmodal" id="calendar_'.$calendar[(($i*7) + $a)].'" class="btn btn-block btn-calendar" onclick="openCalendar(this.name)"><div class="calendar-date">'.date("j", strtotime($today)).'</div></a>';
|
||
} else {
|
||
echo '<a class="calendar-container" name="'.$today.'" type="button" data-toggle="modal" data-target="#scrollmodal" id="calendar_'.$calendar[(($i*7) + $a)].'" class="btn btn-block btn-calendar" onclick="openCalendar(this.name)">';
|
||
$text = "";
|
||
foreach ($activityToday as $activity) {
|
||
echo '<div class="calendar-date">'.date("j", strtotime($today)).'</div>
|
||
<div class="calendar-text" style="width:90%;">';
|
||
switch ($activity->type) {
|
||
case 'regular':
|
||
echo '<div class="row" style="color:orange;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-book fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
case 'pilotage':
|
||
echo '<div class="row" style="color:#58D3F7;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-plane fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
case 'drill':
|
||
echo '<div class="row" style="color:blue;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-trophy fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
case 'music':
|
||
echo '<div class="row" style="color:green;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-music fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
case 'biathlon':
|
||
echo '<div class="row" style="color:red;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-snowflake-o fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
case 'marksmanship':
|
||
echo '<div class="row" style="color:grey;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-star fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
case 'founding':
|
||
echo '<div class="row" style="color:#00FF40;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-usd fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
case 'volunteer':
|
||
echo '<div class="row" style="color:#DF0174;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-handshake-o fa-stack-1x fa-inverse"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
|
||
default:
|
||
echo '<div class="row" style="color:#0B615E;"><span class="fa-stack fa-lg col-md-2"><i class="fa fa-circle fa-stack-2x"></i></span><div class="col-md-10 calendar_event_name">'.ucfirst($activity->data['event_name'])."</div></div>";
|
||
break;
|
||
}
|
||
echo '</div>';
|
||
}
|
||
echo '</a>';
|
||
}
|
||
} else {
|
||
echo '<div class="calendar-container¸calendar-empty" style="border:none !important; width:14%;"></div>';
|
||
}
|
||
}
|
||
echo '</div>';
|
||
}
|
||
|
||
}
|
||
|
||
public function load()
|
||
{
|
||
|
||
$lang = str_replace('_', '-', app()->getLocale());
|
||
setlocale(LC_ALL, $lang.'_'.strtoupper($lang).'.utf8','fra');
|
||
|
||
$Requestdate = request('date');
|
||
|
||
$url = str_replace("-","_", $Requestdate);
|
||
|
||
/** Dont work ... API stuff
|
||
* Log::saveLog("a consulté l'horaire du ".$date);
|
||
**/
|
||
|
||
$today = Schedule::where('date','=',$Requestdate)->get();
|
||
$isEmpty = $today->isEmpty();
|
||
|
||
echo '<div class="modal-content"><div class="modal-header"><h5 class="modal-title" id="scrollmodalLabel">'.ucfirst(strftime("%A le %e %B %Y", strtotime($Requestdate))).'</h5><button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span></button></div><div class="modal-body">';
|
||
foreach ($today as $date) {
|
||
|
||
if ($date->data['is_event_mandatory'] == "on") {
|
||
$is_mandatory = "<div class='btn btn-block btn-warning m-l-10 m-b-10 float-right'>Activité obligatoire</div>";
|
||
} else {
|
||
$is_mandatory = "<div class='btn btn-block btn-primary m-l-10 m-b-10 float-right'>Activité n'est pas obligatoire</div>";
|
||
}
|
||
|
||
echo(
|
||
'<div class="row">'.
|
||
'<div class="col-7">'.
|
||
'<p>'.$date->data['event_name'].trans('calendar.begin_at').$date->data['event_begin_time'].trans('calendar.end_at').$date->data['event_end_time'].'</p>'.
|
||
'</div>'.
|
||
'<div class="col-3">'.
|
||
$is_mandatory.
|
||
'</div>'.
|
||
'<div class="col-1">'.
|
||
'<a href="/admin/calendar/edit/'.$date->id.'" type="button" class="btn btn-secondary"><i class="fa fa-cog"></i> Modifier</a>'.
|
||
'</div>'.
|
||
'<div class="col-1">'.
|
||
'<a type="button" class="btn btn-danger" onclick="deleteEvent('.$date->id.');"><i class="fa fa-times-circle" style="color:white;"></i></a>'.
|
||
'</div>'.
|
||
'</div>'.
|
||
'<p>'.
|
||
"L'activité auras lieux a l'escadron entre 18h30 et 21h30".
|
||
'</p>'.
|
||
'<p>'.$date->data['event_desc'].
|
||
'</p>'
|
||
);
|
||
|
||
if ($date->type == "regular") {
|
||
|
||
if($date->data['n1_p1_plandone'] == "on")
|
||
{
|
||
$isdone_n1_p1 = '<span class="badge badge-success">Remis</span></i>';
|
||
} else {
|
||
$isdone_n1_p1 = '<span class="badge badge-danger">Non remis</span>';
|
||
}
|
||
|
||
if($date->data['n1_p2_plandone'] == "on")
|
||
{
|
||
$isdone_n1_p2 = '<span class="badge badge-success">Remis</span></i>';
|
||
} else {
|
||
$isdone_n1_p2 = '<span class="badge badge-danger">Non remis</span>';
|
||
}
|
||
|
||
if($date->data['n2_p1_plandone'] == "on")
|
||
{
|
||
$isdone_n2_p1 = '<span class="badge badge-success">Remis</span></i>';
|
||
} else {
|
||
$isdone_n2_p1 = '<span class="badge badge-danger">Non remis</span>';
|
||
}
|
||
|
||
if($date->data['n2_p2_plandone'] == "on")
|
||
{
|
||
$isdone_n2_p2 = '<span class="badge badge-success">Remis</span></i>';
|
||
} else {
|
||
$isdone_n2_p2 = '<span class="badge badge-danger">Non remis</span>';
|
||
}
|
||
|
||
if($date->data['n3_p1_plandone'] == "on")
|
||
{
|
||
$isdone_n3_p1 = '<span class="badge badge-success">Remis</span></i>';
|
||
} else {
|
||
$isdone_n3_p1 = '<span class="badge badge-danger">Non remis</span>';
|
||
}
|
||
|
||
if($date->data['n3_p2_plandone'] == "on")
|
||
{
|
||
$isdone_n3_p2 = '<span class="badge badge-success">Remis</span></i>';
|
||
} else {
|
||
$isdone_n3_p2 = '<span class="badge badge-danger">Non remis</span>';
|
||
}
|
||
echo '<table class="table">
|
||
<thead class="thead-dark">
|
||
<tr>
|
||
<th>Niveau</th>
|
||
<th style="width:45%">1er Période</th>
|
||
<th style="width:45%">2e Période</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<th>1</th>
|
||
<td>
|
||
<table class="table float center" style="border:none; max-width:80%; margin:auto;">
|
||
<tbody>
|
||
<tr style="border:none;">
|
||
<td style="border:none; width:80%">'.User::find($date->data['n1_p1_instructor'])->fullname().'</td>
|
||
<td style="border:none;">'.$isdone_n1_p1.'</td>
|
||
</tr>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.$date->data['n1_p1_ocom'].' - '.$date->data['n1_p1_name'].'</td>
|
||
<td style="border:none;">'.Local::find($date->data['n1_p1_local'])->name.'</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</td>
|
||
<td>
|
||
<table class="table float center" style="border:none; max-width:80%; margin:auto;">
|
||
<tbody>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.User::find($date->data['n1_p2_instructor'])->fullname().'</td>
|
||
<td style="border:none;">'.$isdone_n1_p2.'</td>
|
||
</tr>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.$date->data['n1_p2_ocom'].' - '.$date->data['n1_p2_name'].'</td>
|
||
<td style="border:none;">'.Local::find($date->data['n1_p2_local'])->name.'</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>2</th>
|
||
<td>
|
||
<table class="table float center" style="border:none; max-width:80%; margin:auto;">
|
||
<tbody>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.User::find($date->data['n2_p1_instructor'])->fullname().'</td>
|
||
<td style="border:none;">'.$isdone_n2_p1.'</td>
|
||
</tr>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.$date->data['n2_p1_ocom'].' - '.$date->data['n2_p1_name'].'</td>
|
||
<td style="border:none;">'.Local::find($date->data['n2_p1_local'])->name.'</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</td>
|
||
<td>
|
||
<table class="table float center" style="border:none; max-width:80%; margin:auto;">
|
||
<tbody>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.User::find($date->data['n2_p2_instructor'])->fullname().'</td>
|
||
<td style="border:none;">'.$isdone_n2_p2.'</td>
|
||
</tr>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.$date->data['n2_p2_ocom'].' - '.$date->data['n2_p2_name'].'</td>
|
||
<td style="border:none;">'.Local::find($date->data['n2_p2_local'])->name.'</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>3</th>
|
||
<td>
|
||
<table class="table float center" style="border:none; max-width:80%; margin:auto;">
|
||
<tbody>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.User::find($date->data['n3_p1_instructor'])->fullname().'</td>
|
||
<td style="border:none;">'.$isdone_n3_p1.'</td>
|
||
</tr>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.$date->data['n3_p1_ocom'].' - '.$date->data['n3_p1_name'].'</td>
|
||
<td style="border:none;">'.Local::find($date->data['n3_p1_local'])->name.'</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</td>
|
||
<td>
|
||
<table class="table float center" style="border:none; max-width:80%; margin:auto;">
|
||
<tbody>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.User::find($date->data['n3_p2_instructor'])->fullname().'</td>
|
||
<td style="border:none;">'.$isdone_n3_p2.'</td>
|
||
</tr>
|
||
<tr style="border:none;">
|
||
<td style="border:none;width:80%">'.$date->data['n3_p2_ocom'].' - '.$date->data['n3_p2_name'].'</td>
|
||
<td style="border:none;">'.Local::find($date->data['n3_p2_local'])->name.'</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>';
|
||
}
|
||
echo '<br><hr><br>';
|
||
}
|
||
|
||
echo '<a href="/admin/calendar/add/'.$url.'" type="button" class="btn btn-primary btn-lg btn-block">'.trans('calendar.add_to_schedule').'</a></div><div class="modal-footer"><button type="button" class="btn btn-secondary" data-dismiss="modal">'.trans('pagination.close').'</button></div></div>';
|
||
}
|
||
|
||
public function add($date)
|
||
{
|
||
$lang = str_replace('_', '-', app()->getLocale());
|
||
setlocale(LC_ALL, $lang.'_'.strtoupper($lang).'.utf8','fra');
|
||
|
||
$date = str_replace("_", "-", $date);
|
||
|
||
$UserList = User::all();
|
||
$LocalList = Local::all();
|
||
|
||
return view('admin.calendar.calendar_add' ,['RequestDate' => $date, 'Userslist' => $UserList, 'LocalsList' => $LocalList]);
|
||
}
|
||
|
||
public function edit($id)
|
||
{
|
||
$schedule = Schedule::find($id);
|
||
$UserList = User::all();
|
||
$LocalList = Local::all();
|
||
|
||
return view('admin.calendar.calendar_edit' ,['RequestSchedule' => $schedule, 'Userslist' => $UserList, 'LocalsList' => $LocalList]);
|
||
}
|
||
|
||
public function store()
|
||
{
|
||
$schedule = new Schedule;
|
||
|
||
$schedule->date = request('event_date');
|
||
$schedule->type = request('event_type');
|
||
|
||
if(request('event_type') == "regular")
|
||
{
|
||
$eventData = [
|
||
"event_name" => request('event_name'),
|
||
"is_event_mandatory" => request('is_event_mandatory'),
|
||
"event_date" => request('event_date'),
|
||
"event_begin_time" => request('event_begin_time'),
|
||
"event_end_time" => request('event_end_time'),
|
||
"event_location" => request('event_location'),
|
||
"event_desc" => request('event_desc'),
|
||
"n1_p1_name" => request('n1_p1_name'),
|
||
"n1_p1_ocom" => request('n1_p1_ocom'),
|
||
"n1_p1_instructor" => request('n1_p1_instructor'),
|
||
"n1_p1_local" => request('n1_p1_local'),
|
||
"n1_p1_plandone" => request('n1_p1_plandone'),
|
||
"n1_p2_name" => request('n1_p2_name'),
|
||
"n1_p2_ocom" => request('n1_p2_ocom'),
|
||
"n1_p2_instructor" => request('n1_p2_instructor'),
|
||
"n1_p2_local" => request('n1_p2_local'),
|
||
"n1_p2_plandone" => request('n1_p2_plandone'),
|
||
"n2_p1_name" => request('n2_p1_name'),
|
||
"n2_p1_ocom" => request('n2_p1_ocom'),
|
||
"n2_p1_instructor" => request('n2_p1_instructor'),
|
||
"n2_p1_local" => request('n2_p1_local'),
|
||
"n2_p1_plandone" => request('n2_p1_plandone'),
|
||
"n2_p2_name" => request('n2_p2_name'),
|
||
"n2_p2_ocom" => request('n2_p2_ocom'),
|
||
"n2_p2_instructor" => request('n2_p2_instructor'),
|
||
"n2_p2_local" => request('n2_p2_local'),
|
||
"n2_p2_plandone" => request('n2_p2_plandone'),
|
||
"n3_p1_name" => request('n3_p1_name'),
|
||
"n3_p1_ocom" => request('n3_p1_ocom'),
|
||
"n3_p1_instructor" => request('n3_p1_instructor'),
|
||
"n3_p1_local" => request('n3_p1_local'),
|
||
"n3_p1_plandone" => request('n3_p1_plandone'),
|
||
"n3_p2_name" => request('n3_p2_name'),
|
||
"n3_p2_ocom" => request('n3_p2_ocom'),
|
||
"n3_p2_instructor" => request('n3_p2_instructor'),
|
||
"n3_p2_local" => request('n3_p2_local'),
|
||
"n3_p2_plandone" => request('n3_p2_plandone'),
|
||
];
|
||
} else {
|
||
$eventData = [
|
||
"event_name" => request('event_name'),
|
||
"is_event_mandatory" => request('is_event_mandatory'),
|
||
"event_date" => request('event_date'),
|
||
"event_begin_time" => request('event_begin_time'),
|
||
"event_end_time" => request('event_end_time'),
|
||
"event_location" => request('event_location'),
|
||
"event_desc" => request('event_desc'),
|
||
];
|
||
}
|
||
|
||
$schedule->data = $eventData;
|
||
|
||
$schedule->save();
|
||
|
||
/** Logs and Notification */
|
||
Log::saveLog("Ajout de l'activité, ".$schedule->event_name." à l'horaire le ".$schedule->event_date);
|
||
|
||
}
|
||
|
||
public function patch($id)
|
||
{
|
||
$schedule = Schedule::find($id);
|
||
|
||
$schedule->date = request('event_date');
|
||
$schedule->type = request('event_type');
|
||
|
||
if(request('event_type') == "regular")
|
||
{
|
||
$eventData = [
|
||
"event_name" => request('event_name'),
|
||
"is_event_mandatory" => request('is_event_mandatory'),
|
||
"event_date" => request('event_date'),
|
||
"event_begin_time" => request('event_begin_time'),
|
||
"event_end_time" => request('event_end_time'),
|
||
"event_location" => request('event_location'),
|
||
"event_desc" => request('event_desc'),
|
||
"n1_p1_name" => request('n1_p1_name'),
|
||
"n1_p1_ocom" => request('n1_p1_ocom'),
|
||
"n1_p1_instructor" => request('n1_p1_instructor'),
|
||
"n1_p1_local" => request('n1_p1_local'),
|
||
"n1_p1_plandone" => request('n1_p1_plandone'),
|
||
"n1_p2_name" => request('n1_p2_name'),
|
||
"n1_p2_ocom" => request('n1_p2_ocom'),
|
||
"n1_p2_instructor" => request('n1_p2_instructor'),
|
||
"n1_p2_local" => request('n1_p2_local'),
|
||
"n1_p2_plandone" => request('n1_p2_plandone'),
|
||
"n2_p1_name" => request('n2_p1_name'),
|
||
"n2_p1_ocom" => request('n2_p1_ocom'),
|
||
"n2_p1_instructor" => request('n2_p1_instructor'),
|
||
"n2_p1_local" => request('n2_p1_local'),
|
||
"n2_p1_plandone" => request('n2_p1_plandone'),
|
||
"n2_p2_name" => request('n2_p2_name'),
|
||
"n2_p2_ocom" => request('n2_p2_ocom'),
|
||
"n2_p2_instructor" => request('n2_p2_instructor'),
|
||
"n2_p2_local" => request('n2_p2_local'),
|
||
"n2_p2_plandone" => request('n2_p2_plandone'),
|
||
"n3_p1_name" => request('n3_p1_name'),
|
||
"n3_p1_ocom" => request('n3_p1_ocom'),
|
||
"n3_p1_instructor" => request('n3_p1_instructor'),
|
||
"n3_p1_local" => request('n3_p1_local'),
|
||
"n3_p1_plandone" => request('n3_p1_plandone'),
|
||
"n3_p2_name" => request('n3_p2_name'),
|
||
"n3_p2_ocom" => request('n3_p2_ocom'),
|
||
"n3_p2_instructor" => request('n3_p2_instructor'),
|
||
"n3_p2_local" => request('n3_p2_local'),
|
||
"n3_p2_plandone" => request('n3_p2_plandone'),
|
||
];
|
||
} else {
|
||
$eventData = [
|
||
"event_name" => request('event_name'),
|
||
"is_event_mandatory" => request('is_event_mandatory'),
|
||
"event_date" => request('event_date'),
|
||
"event_begin_time" => request('event_begin_time'),
|
||
"event_end_time" => request('event_end_time'),
|
||
"event_location" => request('event_location'),
|
||
"event_desc" => request('event_desc'),
|
||
];
|
||
}
|
||
|
||
$schedule->data = $eventData;
|
||
|
||
$schedule->save();
|
||
|
||
$check = Schedule::find($id);
|
||
|
||
dd($check);
|
||
}
|
||
|
||
public function delete()
|
||
{
|
||
$id = request('id');
|
||
|
||
$schedule = Schedule::find($id);
|
||
|
||
$schedule->delete();
|
||
}
|
||
|
||
}
|