Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
resources /
views /
Delete
Unzip
Name
Size
Permission
Date
Action
auth
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
customers
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
devis
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
documents
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
errors
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
interventions
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
layouts
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
pages
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
planning
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
profile
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
teams
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
users
[ DIR ]
drwxrwxrwx
2022-04-21 13:44
dashboard.blade.php
5.25
KB
-rwxrwxrwx
2022-04-21 13:43
welcome.blade.php
374
B
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
@extends('layouts.app', ['activePage' => 'dashboard', 'titlePage' => __('Dashboard')]) @section('content') <div class="content"> <div class="container-fluid"> <div class="row"> <div class="col-sm"> <div class="card cursor-pointer" id="cardActivesTeam"> <div class="card-header card-header-info p-2"> <p class="card-category p-1">Équipes actives</p> </div> <div class="card-footer flex-row-reverse"> <h3 class="card-title"> {{$numberTeamsActive}}/{{$numberTeams}} </h3> </div> </div> </div> <div class="col-sm"> <div class="card cursor-pointer" id="cardActivesUsers"> <div class="card-header card-header-info p-2"> <p class="card-category p-1">Intervenants actifs</p> </div> <div class="card-footer flex-row-reverse"> <h3 class="card-title"> {{ $workerActive }} </h3> </div> </div> </div> <div class="col-sm"> <div class="card cursor-pointer" id="cardInterventionsInProgress"> <div class="card-header card-header-info p-2"> <p class="card-category p-1">Interventions en cours</p> </div> <div class="card-footer flex-row-reverse"> <h3 class="card-title"> {{ $openedInterventions }} </h3> </div> </div> </div> <div class="col-sm"> <div class="card cursor-pointer" id="cardInterventionsFinished"> <div class="card-header card-header-info p-2"> <p class="card-category p-1">Interventions terminées</p> </div> <div class="card-footer flex-row-reverse"> <h3 class="card-title"> {{ $closedInterventions }} </h3> </div> </div> </div> <div class="col-sm"> <div class="card cursor-pointer" id="cardInterventionsToInvoice"> <div class="card-header card-header-info p-2"> <p class="card-category p-1">Interventions à facturer</p> </div> <div class="card-footer flex-row-reverse"> <h3 class="card-title"> {{ $toInvoiceInterventions }} </h3> </div> </div> </div> </div> <div class="row"> <div class="col-lg"> <div class="card"> <div class="card-header card-header-info"> <h4 class="card-title">Interventions de la semaine</h4> </div> <div class="card-body table-responsive"> <table class="table table-hover"> <thead class="text-info"> <th>Réference</th> <th>Date début</th> <th>Date fin</th> <th>Lieu</th> <th>Statut</th> <th>Equipe</th> <th class="text-center">À Facturer</th> </thead> <tbody> @foreach($weeklyInterventions as $intervention) <tr> <td><a href={{ "/interventions/" . $intervention->id }}>{{ $intervention->ref }}</a></td> <td>{{ date("d/m/Y", strtotime($intervention->start_date)) }}</td> <td>{{ date("d/m/Y", strtotime($intervention->end_date)) }}</td> <td>{{ $intervention->address }}</td> <td class="text-center">{{ $intervention->status_id }}</td> <td>{{ "Equipe " . $intervention->team_id }}</td> <td class="text-center"> {{ $intervention->status_id == 4 ? "OUI" : "NON"}} </td> <!-- TODO: edit the 4 in fonction of status defined --> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection @push('js') <script> $(document).ready(function () { // Javascript method's body can be found in assets/js/demos.js const activesTeams = document.getElementById("cardActivesTeam"); activesTeams.addEventListener("click", function(){ window.location.href = "/teams/actives"; }); const activesUsers = document.getElementById("cardActivesUsers"); activesUsers.addEventListener("click", function(){ window.location.href = "/users/actives"; }); const interventionsInProgress = document.getElementById("cardInterventionsInProgress"); interventionsInProgress.addEventListener("click", function(){ window.location.href = "/interventions/details/progress"; }); const interventionsFinished = document.getElementById("cardInterventionsFinished"); interventionsFinished.addEventListener("click", function(){ window.location.href = "/interventions/details/finish"; }); const cardInterventionsToInvoice = document.getElementById("cardInterventionsToInvoice"); cardInterventionsToInvoice.addEventListener("click", function(){ window.location.href = "/interventions/details/toInvoice"; }); }); </script> @endpush