@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')
Faqs
@if(Session::has('message')) @endif

Faqs List

@foreach ($data as $row) @endforeach
S.No Faqs Question Faqs Answer Posted Date Action
{{ $loop->index+1 }} {{ $row->que }} {{ $row->ans }} {{ date('d-m-Y', strtotime($row->created_at))}} Edit Delete
@endsection