@extends('backend.layouts.master') @section('title', 'All Projects - Admin Panel') @section('admin-content') @section('styles') @endsection
@include('backend.layouts.partials.logout')

{{ __('Projects') }}

Create New Project

@foreach($projects as $key => $project) @endforeach
# Image Name Status Launch Status Asset Type Documents Actions
{{ $key+1 }} @if ($project->image) Project Image @else

No image uploaded

@endif
{{ $project->name }} {{ $project->status }} @if($project->launching_soon) Launched @else Launching Soon @endif {{ $project->asset_type }}
@if($project->term_condition_url) 📄 Terms @else @endif @if($project->balance_sheet_url) 📊 Sheet @else @endif
View Edit
@csrf @method('DELETE')
@endsection @section('scripts') @endsection