Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/resources/themes/compo/partials/tabs/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/resources/themes/compo/partials/tabs/reviews.blade.php
<div class="tab-pane fade" id="reviews" role="tabpanel">
    @foreach($reviews as $review)
        <div class="comment border-0">
                <div class="comment-author-ava">
                    <img src="{{ @$review->author->picture_thumb }}"
                         alt="Review author">
                </div>
                <div class="comment-body">
                        <div class="comment-header d-flex flex-wrap justify-content-between">
                                <h4 class="comment-title">{{ $review->title }}</h4>
                                <div class="mb-2">
                                        @include('partials.components.rating',['rating'=> $review->rating,'rating_count'=>null ])
                                </div>
                        </div>
                        <p class="comment-text">{{ $review->body }}</p>
                        <div class="comment-footer"><span class="comment-meta">{{ @$review->author->full_name }}</span></div>
                </div>
        </div>

    @endforeach
    <!-- Review Form-->
            @if(!user())
                    <div class="alert alert-info alert-dismissible fade show text-center margin-bottom-1x"><span class="alert-close"
                                                                                                                 data-dismiss="alert"></span><i
                                    class="icon-layers"></i>@lang('corals-compo::labels.partial.tabs.need_login_review')
                    </div>
            @else
                    <h5 class="mb-30 padding-top-1x">@lang('corals-compo::labels.partial.tabs.leave_review')</h5>
                    {!! Form::open( ['url' => url('shop/'.$product->hashed_id.'/rate'),'method'=>'POST', 'class'=>'ajax-form row','id'=>'checkoutForm','data-page_action'=>"clearForm"]) !!}

                    <div class="col-sm-6">
                            {!! CoralsForm::text('review_subject','corals-compo::attributes.tab.subject',true) !!}
                    </div>

                    <div class="col-sm-6">
                            {!! CoralsForm::select('review_rating', 'corals-compo::attributes.tab.rating', trans('corals-compo::attributes.tab.rating_option'),true) !!}
                    </div>
                    <div class="col-12">
                            {!! CoralsForm::textarea('review_text','corals-compo::attributes.tab.review',true,null,['rows'=>4]) !!}

                    </div>
                    <div class="col-12 text-right">
                            {!! CoralsForm::button('corals-compo::labels.partial.tabs.submit_review',['class'=>'btn btn-outline-primary'], 'submit') !!}
                    </div>
                    {!! Form::close() !!}
            @endif
</div>

Spamworldpro Mini