@extends('layouts.admin_layout') @section('content')

Manage Research

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Research Lists

Add
@php $i=1;@endphp @foreach($researches as $research) @endforeach
# Sorting Category Name Title Image Author Name Author Description Published At Description Quantity Non Member Price Member Price Publish Status Status Action
{{$i++}} {{$research->sorting}} {{$research->research_category->category_name}} {{$research->title}} {{$research->image}} {{ucwords($research->author_name)}} {!! html_entity_decode($research->author_short_description) !!} {{$research->published_at}} {!! html_entity_decode($research->description) !!} {{$research->quantity}} {{$research->non_member_price}} {{$research->member_price}} @if($research->publish_status == 1) Published@elseif($research->publish_status == 2) Out of Stack @else not-published@endif @if($research->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection