Current File : //home/tradevaly/demo.tradevaly.com.bd/resources/views/backend/faqs/index.blade.php
@extends('layouts.backend')
    @section('content')  
<!-- Container Fluid-->
            <div class="row">
                <div class="col-lg-12">
                  <!-- Form Basic -->
                  <div class="card mb-4">
                    <div class="card-header card-header-modify py-3 d-flex flex-row align-items-center justify-content-between">
                      <h6 class="m-0 font-weight-bold text-heading-bar">Faqs</h6>
                      
                      <a href="{{route('faqs.create')}}" class="btn btn-default-index  btn-sm text-right "><i class="fas fa-plus-circle"></i> Add New FAQ</a>
                     
                    </div>
                    <div class="card-body">
                          <table class="table table-bordered">
                            <tr>
                               <th>No</th>
                               <th>Question</th>
                               <th>Answer</th>
                               <th width="280px">Action</th>
                             </tr>
                              
                              @if( isset($data) && !empty($data) )
                                @foreach ($data as $key => $d)
                                  
                                  <tr>                                  
                                      <td>{{ ++$i }}</td>
                                      <td>{{ !empty($d->question) ? $d->question : '' }}</td>
                                      
                                      <td>{{ !empty($d->answer) ? $d->answer : '' }}</td>
                                      
                                    <td>
                                      
                                      <a class="btn btn-primary btn-sm" href="{{ route('faqs.edit',$d->id) }}"  data-toggle="tooltip" data-placement="left" title="Edit"><i class="fas fa-edit"></i></a>
                                       
                                      
                                       <a class="btn btn-danger btn-sm show-modal" href="#" data-toggle="tooltip" data-placement="top" title="Delete" value-id="{{$d->id}}" value-title="Delete" message= "Are you sure? You want to delete ?" method="Post" action="faqs" ><i class="fa fa-trash fa-lg" aria-hidden="true"></i></a>


                                      @if($d->status == 1)

                                            <a class="btn btn-danger btn-sm show-modal" href="#" data-toggle="tooltip" data-placement="top" title="Inactive" value-id="{{$d->id}}" value-title="Inactive" message= "Are you sure? You want to inactive ?" method="get" action="faqs-active-inactive" ><i class="fa fa-times" aria-hidden="true"></i></a>

                                        @else

                                               
                                             <a class="btn btn-success btn-sm show-modal" href="#" data-toggle="tooltip" data-placement="top" title="Active" value-id="{{$d->id}}" value-title="Active"  message="Are you sure? You want to active ?" method="get" action="faqs-active-inactive"><i class="fa fa-check-circle" aria-hidden="true"></i></a>

                                        @endif


                                    </td>

                                    
                                  </tr>

                               @endforeach
                            @endif

                        </table>
                        <br/>
                        {!! $data->render() !!}
                    </div>
                  </div>
                
              </div>
            </div>
          <!--Row-->



    @endsection