msg.blade.php
2.38 KB
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
<div class="message dark">
<div class="header">
<h1>{!!$message['subject']!!}</h1>
<div class="from"><i class="halflings-icon user"></i> <b>{!!$message['from']!!}</b></div>
<div class="date"><i class="halflings-icon time"></i>{!!date("d-M H:i",strtotime($message['created_at']))!!}</b></div>
<div class="menu"></div>
</div>
<div class="content">
<?php $data=json_decode($message['data'],true); ?>
{!!$data['body']!!}
</div>
<div class="attachments" style='display:none'>
<ul>
<li>
<span class="label label-important">zip</span> <b>bootstrap.zip</b> <i>(2,5MB)</i>
<span class="quickMenu">
<a href="#" class="glyphicons search"><i></i></a>
<a href="#" class="glyphicons share"><i></i></a>
<a href="#" class="glyphicons cloud-download"><i></i></a>
</span>
</li>
<li>
<span class="label label-info">txt</span> <b>readme.txt</b> <i>(7KB)</i>
<span class="quickMenu">
<a href="#" class="glyphicons search"><i></i></a>
<a href="#" class="glyphicons share"><i></i></a>
<a href="#" class="glyphicons cloud-download"><i></i></a>
</span>
</li>
<li>
<span class="label label-success">xls</span> <b>spreadsheet.xls</b> <i>(984KB)</i>
<span class="quickMenu">
<a href="#" class="glyphicons search"><i></i></a>
<a href="#" class="glyphicons share"><i></i></a>
<a href="#" class="glyphicons cloud-download"><i></i></a>
</span>
</li>
</ul>
</div>
<form class="replyForm" method="post" action="" />
<!-- Code for flexydial securities purpose -->
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<!-- Code for flexydial securities purpose -->
<fieldset>
<textarea tabindex="3" class="input-xlarge span12" id="message" name="body" rows="12" placeholder="Click here to reply"></textarea>
<div class="actions">
<button tabindex="3" type="submit" class="btn btn-success">Send message</button>
</div>
</fieldset>
</form>
</div>
<script>
@if(isset($displaymsg))
simpleNotification("{!!$displaymsg['type']!!}","topRight","{!!$displaymsg['text']!!}");
@endif
</script>