@extends('layouts.app') @section('title', 'Campaigns') @section('content')

Campaigns

+ Create Campaign
@forelse($campaigns as $campaign) @empty @endforelse
Name Model Bid Budget Spent Status Action
{{ $campaign->name }} {{ strtoupper( $campaign->pricing_model ) }} {{ $campaign->bid }} ৳{{ number_format( $campaign->total_budget, 2 ) }} ৳{{ number_format( $campaign->spent, 4 ) }} {{ ucfirst( $campaign->status ) }} Edit
@csrf @method('DELETE')
No campaigns found.

{{ $campaigns->links() }} @endsection