File: /var/www/vhost/disk-apps/demo-sigedo.teky.com.co/resources/views/monitorings/list.blade.php
@extends('layouts.master')
@section('page-css')
<link rel="stylesheet" href="{{ asset('assets/styles/vendor/datatables.min.css') }}">
@endsection
@section('main-content')
<div class="breadcrumb">
<h1> @lang('monitorings_process')</h1>
</div>
<div class="separator-breadcrumb border-top"></div>
<section class="contact-list">
<div class="row">
<div class="col-md-12 mb-4">
<div class="card text-left">
<div class="card-body">
<div class="table-responsive">
<table id="table-list" class="display table " style="width:100%">
<thead>
<tr>
<th>@lang('programming')</th>
<th>@lang('status')</th>
<th>@lang('msg')</th>
<th>@lang('start_execution')</th>
<th>@lang('end_execution')</th>
</tr>
</thead>
<tbody>
@foreach ($monitorings as $monitoring)
<tr>
<td>{{ $monitoring->programming->automaticprocess->name }}</td>
<td>{{ $monitoring->stateprogramming->name }}</td>
<td>{{ $monitoring->msg }}</td>
<td>{{ $monitoring->start_execution }}</td>
<td>{{ $monitoring->end_execution }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
@endsection
@section('page-js')
<script src="{{ asset('assets/js/vendor/datatables.min.js') }}"></script>
<script src="{{ asset('assets/js/tooltip.script.js') }}"></script>
<script>
$("#table-list").DataTable({
order: [],
pageLength: 100,
language: {
url: "https://cdn.datatables.net/plug-ins/1.10.19/i18n/"+ '{{ config("customize.language_tables") }}'
}
});
</script>
@endsection