@extends('layouts.admin') @section('title', 'Manage Portfolios') @section('page_heading', 'Manage Portfolios') @section('page_actions') Add Portfolio @endsection @section('content')
@forelse ($portfolios as $portfolio) @empty @endforelse
Name Service Status Created Actions
{{ $portfolio->name }} {{ $portfolio->service?->name ?? '-' }} @if ($portfolio->status === 'active') Active @else Inactive @endif {{ $portfolio->created_at?->format('Y-m-d') }} Edit
@csrf @method('DELETE')
No portfolios found.
{{ $portfolios->links() }}
@endsection