PATH:
home
/
lab2454c
/
netxzero.com
/
carbon-credit
/
resources
/
views
/
frontend
@extends('frontend.layouts.master') @section('title', 'Projects') @section('content') <div class="product__listing__wrapp"> <div class="container"> @include('frontend.homeSections.filters') <div class="product__filter__mid mb-3"> <div class="row"> @forelse($projects as $project) {{-- {{dd($project)}} --}} <div class="col-xl-6 col-lg-6 col-md-12 mr__bottom"> <a href="{{ route('projectDetails', $project->project_id) }}" class="product__listing__block"> <div class="product__overview"> <div class="image__box"> <img src="{{ $project->images->first()->url ?? asset('frontAssets/images/image1.jpeg') }}"> </div> <div class="product-info"> <h4> <span title="Project Type"> {{ $project['type'] ?? '' }} </span> </h4> <h3> <span title="Project Name"> {{ \Str::limit($project['name'], 40) ?? '' }} </span> </h3> <span> Per KG cost USD(Cent): {{ $project['cost_per_kg_carbon_in_usd_cents'] ?? '' }} </span> <span> Available Carbon(In KG): {{ $project['available_carbon_in_kg'] ?? ''}} </span> </div> </div> <div class="description"> <p>{{ $project['short_description'] ?? '' }}</p> </div> </a> </div> @empty <span class="text-center" style="margin: 5rem 0 20rem 0;">No Project(s) Found</span> @endforelse </div> <div class="row"> <div class="col-xl-12 col-lg-12"> {{$projects->appends(Request::all())->links('pagination::default')}} </div> </div> </div> </div> </div> @endsection
[+]
..
[+]
layouts
[+]
homeSections
[+]
common
[-] home.blade.php
[edit]
[-] dashboard.blade.php
[edit]
[+]
pages
[+]
ecommerce