{{ __('Stocks') }}

Add New Stock
@if(session('success'))
{{ session('success') }}
@endif
@if($stocks->count() > 0)
@foreach($stocks as $stock) @endforeach
Symbol Name Category Sector Date Added Actions
{{ $stock->symbol }} {{ $stock->name }} {{ $stock->category ?? '-' }} {{ $stock->sector_industry ?? '-' }} {{ $stock->date_added->format('M d, Y') }} View Edit
@csrf @method('DELETE')
{{ $stocks->links() }}
@else

No stocks found. Add your first stock

@endif