@extends('admin.layout.app') {{-- makes everything from admin.app appear here --}} @section('heading', 'All Portfolio Items') @section('rightside_button') Add New @endsection @section('main_content')
{{-- Each iteration prints one row () in the table. --}} @foreach ($portfolio_with_category as $item) {{-- helps numbering 1,2,3 dynamically --}} @endforeach
SL Status Title Portfolio Category Page Type Photo Banner Page Photo Gallery Actions
{{ $loop->iteration }}{{ $item->title }} {{ $item->status === 'show' ? 'active' : 'inactive' }} {{ $item->rPortfolioCategory->category_name }} {{ $item->portfolio_type }} @if ($item->photo) Service Photo @endif @if ($item->portfolio_banner) Service Photo @endif @if ($item->portfolio_image) Service Photo @endif Slider Photos Edit Delete
@endsection