@extends('admin.layouts.layout') @section('content')
@if(empty($editQuestionScreenData[0]->id))
@else @endif @csrf

{{ !empty($editQuestionScreenData[0]->id) ? 'Add' : 'Edit' }} Question Screen

@if ($errors->has('label')) {{ $errors->first('label') }}@endif
@if ($errors->has('description')){{ $errors->first('description') }}@endif

List Question Screen

@if(!empty($getQuestionScreenData)) @foreach($getQuestionScreenData as $key=> $questionScreen) @endforeach @endif
Label Description Created_at Action
{{ !empty($questionScreen->label) ? $questionScreen->label : '' }} {{ !empty($questionScreen->description) ? $questionScreen->description : '' }} {{ !empty($questionScreen->created_at) ? date('d-M-Y', strtotime($questionScreen->created_at)) : '' }} Edit Delete
@endsection @section('pagescriptcode') @endsection