@extends('layouts.home')
@section('title', 'Survey category')
@section('content')
Our All Survey Category
Survey Name |
Price |
Action |
@foreach($category as $c)
{{ $c->name }} |
@if($c->price != 0)
@else
@endif
|
Start Survey
|
@endforeach
{{ $category->links() }}
{{ $singleexam->name }} Category
@if($singleexam->price != 0)
@foreach($currency as $cr)
@if($singleexam->currency == $cr->id )
{{ $cr->name }}{{ $singleexam->price }}
@endif
@endforeach
@else
{{ "Free" }}
@endif
{{ $singleexam->description }}
@endsection