@extends('layouts.instructor') @push('title', get_phrase('Manage Packages')) @section('content')
{{ get_phrase('Showing') . ' ' . count($packages) . ' ' . get_phrase('of') . ' ' . $packages->total() . ' ' . get_phrase('data') }}
# | {{ get_phrase('Title') }} | {{ get_phrase('Allocation') }} | {{ get_phrase('Purchases') }} | {{ get_phrase('Status') }} | {{ get_phrase('Price') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|---|---|
{{ ++$key }} |
{{ $package->allocation }} / {{ reserved_team_members($package->id) }} |
{{ team_package_purchases($package->id) }} |
{{ get_phrase($package->status ? 'Active' : 'Inactive') }} |
@if ($package->pricing_type == 0)
{{ get_phrase('Free') }} @else
{{ currency(number_format($package->price, 2)) }}
|
{{ get_phrase('Showing') . ' ' . count($packages) . ' ' . get_phrase('of') . ' ' . $packages->total() . ' ' . get_phrase('data') }}
{{ $packages->links() }}