@extends('layouts.master') @section('title',__('All FAQs')) @section('breadcum') @endsection @section('maincontent')
@can('faq.delete') @endcan @can('faq.create') {{ __('Create FAQs') }} @endcan
{{__("All FAQs")}}
@if ($faqs) @php ($no = 1) @foreach ($faqs as $faq) @endforeach @endif
{{__('Faq Question')}} {{__('Faq Answer')}} {{__('Created At')}} {{__('Updated At')}} {{__('Actions')}}
{{$no}} @php ($no++)
{!! $faq->question !!} {!! $faq->answer !!} {{date('F d, Y',strtotime($faq->created_at))}} {{date('F d, Y',strtotime($faq->updated_at))}}
@can('faq.edit') @endcan @can('faq.delete') @endcan
@endsection @section('script') @endsection