コード例 #1
0
ファイル: edit.blade.php プロジェクト: jacqhernandez/hsms
					<div id="myModal" class="modal fade" role="dialog">
				      <div class="modal-dialog modal-sm">

				        <!-- Modal content-->
				        <div class="modal-content">
				          <div class="modal-header">
				            <button type="button" class="close" data-dismiss="modal">&times;</button>
				            <h4 class="modal-title">Latest Price Logs for <?php 
echo Item::find($item->item_id)->name;
?>
</h4>
				          </div>
				          <div class="modal-body">
				            <?php 
$price_logs = PriceLog::where('item_id', $item->item_id)->orderBy('created_at', 'desc')->take(3)->get();
?>
				            @foreach ($price_logs as $price_log)
				              <p><?php 
echo Supplier::withTrashed()->find($price_log->supplier_id)->name;
?>
: Php {{ number_format($price_log->price, 2, '.', ',') }}</p>
				            @endforeach            
				          <div class="modal-footer">
				            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
				          </div>
				        </div>
				      </div>
				    </div>

				    <script>