mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-23 06:51:27 +00:00
34 lines
No EOL
808 B
PHP
34 lines
No EOL
808 B
PHP
@extends('admin.partial.template-full')
|
|
|
|
@section('section')
|
|
<div class="title">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<div class="font-weight-bold"># {{$message->id}}</div>
|
|
<div class="font-weight-bold h3">Message</div>
|
|
<div>
|
|
@if($message->read_at)
|
|
<span class="btn btn-outline-secondary btn-sm disabled" disabled>Read</span>
|
|
@else
|
|
<button type="button" class="btn btn-outline-primary btn-sm" id="markRead">Mark Read</button>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script type="text/javascript">
|
|
$('#markRead').on('click', function(e) {
|
|
e.preventDefault();
|
|
|
|
axios.post('/i/admin/messages/mark-read', {
|
|
id: '{{$message->id}}',
|
|
}).then(res => {
|
|
window.location.href = window.location.href;
|
|
})
|
|
})
|
|
</script>
|
|
@endpush |