@extends('layouts.admin') @section('meta') {{trans('home.surveys')}} @endsection @section('content')
{{trans('home.surveys')}}

{{trans('home.table_contain_all_data_shortly_you_can_view_more_details')}}

@foreach($surveys as $survey) @endforeach
{{trans('home.id')}} {{trans('home.name_en')}} {{trans('home.name_ar')}} {{trans('home.type')}} {{trans('home.status')}}
{{$survey->id}} {{$survey->name_en}} {{$survey->name_ar}} {{$survey->survay_type}} @if($survey->status == 1) {{trans('home.yes')}} @else {{trans('home.no')}} @endif
@endsection