@extends('layouts.app') @section('title') {{ config('app.name', 'Laravel') }} | {{ __('common.users') }} @endsection @section('heading') {{ __('common.category') }} @endsection @section('heading-icon')admin_panel_settings@endsection @section('content')
| {{ __('common.order_id') }} | {{ __('common.product_name') }} | {{ __('common.qty') }} | {{ __('common.orignal_price') }} | {{ __('common.status') }} | {{ __('common.action') }} |
|---|---|---|---|---|---|
| {{$list->order_id }} | {{$data->product_name }} | {{$list->quantity }} | @if(is_null($list->offer_price)) {{$list->original_price }} @else {{$list->offer_price }} @endif | {{$list->status }} | @if($list->status == 'Cancelled') @elseif($list->status == 'Delivered') @else Cancel @endif |