@extends('admin.layouts.master') @section('title','Edit review-rating') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('Edit') }} {{ __('Review Rating') }}
{{ __('Back') }}
{{ csrf_field() }} {{ method_field('PUT') }}
{{ __('Course') }} :
@foreach($courses as $cou)
courses->id == $cou->id ? 'selected' : ''}}>{{ $cou->title}}
@endforeach
{{ __('User') }} :
@foreach($users as $cu)
user->id == $cu->id ? 'selected' : ''}}>{{ $cu->fname}}
@endforeach
{{ __('Review') }} :
*
{{ $jp->review }}
{{ __('Status') }} :
status == '1' ? 'checked' : '' }} />
{{ __('Approved') }} :
approved == '1' ? 'checked' : '' }} />
{{ __('Featured') }} :
featured == '1' ? 'checked' : '' }} />
{{ __('Reset') }}
{{ __('Update') }}
@endsection