Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php $__env->startSection('styles'); ?>
    <?php echo HTML::style('css/bootstrap.css'); ?>

    <?php echo HTML::style('css/AdminLTE.css'); ?>

    <?php echo HTML::style('css/datatables/dataTables.bootstrap.css'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class="img-titolo">
    <div><hr><h2>Admin</h2><hr></div>
    <img src="<?php echo URL::asset('image/riservata-bg.jpg'); ?>" alt="">
</div>

<div class="wrap admin">
    <?php echo $__env->make('admin.nav', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

    <section class="content">
        <div class="box">
        <div class="box-header">
            <h3 class="box-title"></h3>
        </div>
        <!-- /.box-header -->
        <div class="box-body table-responsive">

            <table id="crud_list" class="table table-bordered table-striped">
                <thead>
                <tr>
                    <th>ordine</th>
                    <th>titolo</th>
                    <th>data</th>
                    <th>pubblicato</th>
                    <th>modifica</th>
                    <th>elimina</th>
                </tr>
                </thead>
                <tbody>
                <?php foreach($news as $i => $voce): ?>
                <tr>
                    <td><?php echo $voce->ordine; ?></td>
                    <td><?php echo $voce->titolo; ?></td>
                    <td><?php echo Carbon::createFromFormat('Y-m-d', $voce->data)->format('d/m/Y');; ?></td>
                    <td><?php echo $voce->pubblicato; ?></td>
                    <td><a href="<?php echo URL::route('admin-news-edit', $voce->id); ?>" class="btn-flat btn-success btn-sm">modifica</a></td>
                    <td><a href="<?php echo URL::route('admin-news-delete', $voce->id); ?>" class="btn-flat btn-warning btn-sm">Elimina</a></td>
                </tr>
                <?php endforeach; ?>
                </tbody>
                </tfoot>
            </table>
        </div>
        <!-- /.box-body -->
    </div>
        <!-- /.box -->
    </section><!-- /.content -->

</div>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>
    <?php echo HTML::script('js/plugins/datatables/jquery.dataTables.js'); ?>

    <?php echo HTML::script('js/plugins/datatables/dataTables.bootstrap.js'); ?>


    <script type="text/javascript">
        $(function () {
            $('#crud_list').dataTable({
                "bSort": true,
                "bPaginate": true,
                "bLengthChange": false,
                "bFilter": false,
                "bInfo": true,
                "bAutoWidth": false
            });
        });
    </script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout.main', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

Commits for Nextrek/Aiba_backup/app/storage/_views/3aafdea15cf34fc4c974e6225dd5a969

Diff revisions: vs.
Revision Author Commited Message
1464 MOliva picture MOliva Tue 13 Oct, 2020 11:16:56 +0000