@extends('backend.master_structure') @section('content') @php $segments = request()->segments(); $group_id = end($segments); use App\DashboardModel; $dash_model_instace = new DashboardModel(); $url = Request::url(); $word = "products" @endphp @if(strpos($url, $word) !== false) @php $data_categories_qr = $dash_model_instace->get_data_category($word); @endphp @endif @php use App\MasterModel; $master_instance = new MasterModel(); @endphp

My Products

{!! Form::open(array('id'=>'product_photo_order_form', 'enctype'=>'multipart/form-data'))!!}

Reorder Your Images


@php $photos_data = $dash_model_instace->get_inserted_users_portfolio_photos($group_id); $photo_count = 1; @endphp
    @foreach ($photos_data as $photos)
  • @if($photos->file == NULL) img @else img @endif
  • @endforeach
{!! Form::close()!!}
@endsection