D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
stage
/
resources
/
views
/
admin
/
promotionemail
/
Filename :
index.blade.php
back
Copy
@extends('admin.layouts.master') @section('content') <div class="portlet box green"> <div class="portlet-title"> <div class="caption">{{ trans('quickadmin::templates.templates-customView_index-list') }}</div> </div> <div class="portlet-body"> {{ trans('quickadmin::templates.templates-customView_index-welcome_custom_view') }} <table class="table table-striped table-hover table-responsive datatable" id="datatable"> <thead> <tr> <th>id</th> <th>email</th> <th>promotion_id</th> <th>contract_id</th> <th>putdate</th> <th>time</th> </tr> </thead> <tbody> @foreach ($pros as $row) <tr> <td>{{ $row->id }}</td> <td>{{ $row->email }}</td> <td>{{ $row->promotion_id }}</td> <td>{{ $row->contract_id }}</td> <td>{{ $row->putdate }}</td> <td> {{ $row->created_at->format('H:i s')}} </td> </tr> @endforeach </tbody> </table> </div> </div> @endsection