180 lines
5.6 KiB
PHP
180 lines
5.6 KiB
PHP
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title> مدیریت پروژههای ثبت شده در سامانه </title>
|
|
|
|
<!-- Font Awesome Icons -->
|
|
<link rel="stylesheet" href="../../plugins/fontawesome-free/css/all.min.css">
|
|
<!-- IRANSans Font -->
|
|
<link rel="stylesheet" href="../../dist/css/fontiran.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="../../dist/css/adminlte.css">
|
|
|
|
<style>
|
|
.card-header {
|
|
padding: 0.75rem 1.25rem .2rem;
|
|
}
|
|
|
|
th {
|
|
font-size: 13px;
|
|
}
|
|
|
|
td {
|
|
font-size: 14px;
|
|
}
|
|
|
|
button.btn {
|
|
font-size: 12px;
|
|
}
|
|
|
|
i {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.starter-loader-container {
|
|
z-index: 3000 !important;
|
|
}
|
|
|
|
.abrar-main {
|
|
margin-top: 95px;
|
|
padding: 0 10px
|
|
}
|
|
|
|
label {
|
|
font-size: .8rem;
|
|
font-weight: 500 !important;
|
|
color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.form-control {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.required-label::after {
|
|
content: "*";
|
|
position: relative;
|
|
right: 2px;
|
|
color: #dc3545;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body class="hold-transition sidebar-mini layout-fixed layout-navbar-fixed starter-project-page">
|
|
<div class="wrapper">
|
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
<div class="content-wrapper">
|
|
<!-- TOP MENU -->
|
|
<header>
|
|
<div class="menu_top" id="navbarmenu_top">
|
|
<div class="rahdariLogo">
|
|
<a href="#"><img src="../dist/images/icons/alertInstallAppLogo.png" alt=""
|
|
title="سازمان راهداری و حمل و نقل جاده ای"></a>
|
|
</div>
|
|
<button class="responsiveTopMenuBtn routinghover" onclick="window.open('/rmto', '_self');">
|
|
<img src="../dist/images/icons/home.svg">صفحه اصلی</button>
|
|
|
|
<div class="clearfix"></div>
|
|
<form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
|
|
@csrf
|
|
</form>
|
|
</div>
|
|
</header>
|
|
<!-- END TOP MENU -->
|
|
<!-- Main content -->
|
|
<div class="content">
|
|
<div class="starter-loader-container">
|
|
<div class="starter-loader"></div>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<div class="row m-0">
|
|
<div class="col-sm-12">
|
|
<div class="abrar-main">
|
|
<!-- Default box -->
|
|
<div id="project-users-rate" class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title"> گزارش فعالیت کاربران </h3>
|
|
<div class="card-tools">
|
|
<button type="button" class="btn btn-tool" data-card-widget="collapse" data-toggle="tooltip"
|
|
title="Collapse">
|
|
<i class="fas fa-minus"></i></button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body table-responsive p-0">
|
|
<table class="table table-striped projects">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 5%"> ردیف </th>
|
|
<th style="width: 10%"> اداره کل </th>
|
|
<th style="width: 20%"> پروژههای راه روستایی </th>
|
|
<th style="width: 23%"> فعالیتهای روزانه و جاری راهداری </th>
|
|
<th style="width: 20%"> فعالیتهای گشت راهداری </th>
|
|
<th style="width: 22%"> پروژههای ساخت راه روستایی (طرح ابرار) </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($projects as $project)
|
|
<tr class="province-projects">
|
|
<td>
|
|
{{ $loop->iteration }}
|
|
</td>
|
|
<td>
|
|
{{ $project['name'] }}
|
|
</td>
|
|
<td>
|
|
{{ $project['roadConstructionProjects'] }}
|
|
</td>
|
|
<td>
|
|
{{ $project['roadItemsProjects'] }}
|
|
</td>
|
|
<td>
|
|
{{ $project['roadPatrolProjects'] }}
|
|
</td>
|
|
<td>
|
|
{{ $project['abrarPlanProjects'] }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- /.card-body -->
|
|
</div>
|
|
<!-- /.card -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.container-fluid -->
|
|
</div>
|
|
<!-- /.content -->
|
|
</div>
|
|
<!-- /.content-wrapper -->
|
|
</div>
|
|
<!-- ./wrapper -->
|
|
|
|
<!-- REQUIRED SCRIPTS -->
|
|
|
|
<!-- jQuery -->
|
|
<script src="../../plugins/jquery/jquery.min.js"></script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Sweetalert2 -->
|
|
<script src="../../plugins/sweetalert2/sweetalert2.all.min.js"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="../../dist/js/adminlte.min.js"></script>
|
|
<!-- Page Script -->
|
|
<!-- <script src="./dist/js/user-list.js"></script> -->
|
|
</body>
|
|
|
|
</html>
|