/home/mip/mip/app/Modules/Client/Views/pages/faq/includes/faq-details-modal.blade.php
<div id="faq-details-modal" class="modal fade" role="dialog">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal">&times;</button>
                <h4 class="modal-title">FAQ Details</h4>
            </div>
            <div class="modal-body">
                <table class="table table-condensed" id="details-table" width="100%">
                    <tbody>
                        <tr>
                            <th width="10%">Question:</th>
                            <td width="40%" class="title"></td>
                        </tr>
                        <tr>
                            <th width="10%">Answer:</th>
                            <td width="40%" class="content"></td>
                        </tr>
                        <tr>
                            <th width="10%">Status:</th>
                            <td width="40%" class="status"></td>
                        </tr>
                    </tbody>
                </table>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default btn-flat close-modal" data-dismiss="modal">Close</button>
            </div>
        </div>
    </div>
</div>