@extends('admin.layouts.app')
@section('title', 'Хийсэн ажлууд')
@section('page_title', 'Хийсэн ажлууд')
@section('content')
@forelse($portfolios as $p)
{{ $p->category->name ?? '' }}
@if($p->is_featured) ⭐ Featured @endif
{{ $p->title }}
{{ $p->client_name }}
{{ $p->is_active ? 'Идэвхтэй' : 'Идэвхгүй' }}
@empty
Ажил нэмээгүй байна.
@endforelse
{{ $portfolios->links() }}
@endsection