@extends('admin.tw.layout') @section('title','Portfolios') @section('content')

Portfolios

Add Portfolio
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@forelse(($Portfolio ?? []) as $pf) @empty @endforelse
Image Title Category Created Actions
@php $img = $pf->image_one ? url('/uploads/portfolios/'.$pf->image_one) : null; @endphp @if($img) {{ $pf->name }} @else N/A @endif {{ $pf->name }} {{ $pf->category_title }} {{ $pf->created_at }}
No portfolios found.
@endsection