@extends('layouts.app') @section('title', 'Package Details - ISP ERP System') @section('page-title', 'Package Details') @section('content')

Package Details

View package information and details

Package Information

{{ $package->name }}

{{ $package->id }}
BDT{{ number_format($package->price, 2) }}
@if($package->speed_mbps) {{ $package->speed_mbps }} Mbps @else Not specified @endif
@if($package->branch)
{{ $package->branch->name }} @if($package->branch->code) {{ $package->branch->code }} @endif
@else No branch assigned @endif
@if($package->user)
{{ $package->user->name }} {{ $package->user->email }}
@else Unknown user @endif
@if($package->is_active) Active @else Inactive @endif
{{ $package->created_at->format('M d, Y H:i') }}
@if($package->description)
{{ $package->description }}
@else No description provided @endif
Actions
Edit Package
@csrf @method('PATCH')
@csrf @method('DELETE')
Package Statistics
{{ $package->updated_at->format('M d, Y H:i') }}
{{ $package->created_at->diffInDays(now()) }} days
@if($package->speed_mbps) Speed-based @else Price-based @endif
@endsection @section('styles') @endsection