@extends('layouts.backend')
@section('extra_css')
@endsection
@section('content')
All Surveys
manage your Survey
# |
Survey Questions |
Start at |
End at |
Action |
@foreach(\App\Poll::orderBy('id', 'desc')->get() as $poll)
{{ $poll->id }} |
{{ $poll->question}} |
{{ $poll->start_date}} |
{{ $poll->end_date}} |
|
@endforeach
@endsection
@section('extra_js')
@endsection