@extends('layouts.admin.master') @section('content')
{{ __('content.portfolio_details') }}
@if (count($portfolio_details) > 0)
@if ($demo_mode == "on") @include('admin.demo_mode.demo-mode') @else
@method('DELETE') @csrf @endif
@php $desc = count($portfolio_details); $asc=0; @endphp @foreach ($portfolio_details as $portfolio_detail) @endforeach
# {{ __('content.title') }} {{ __('content.order') }} {{ __('content.action') }}
{{ $asc++ }}{{ $desc-- }} {{ $portfolio_detail->title }} {{ $portfolio_detail->order }}
@else {{ __('content.not_yet_created') }} @endif
@endsection