This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(1) Toronto Raptors vs. (8) Washington Wizards | |
GAME DATE MATCHUP (TIMES ET) | |
Game 1 Sat. April 14 Wizards at Raptors, 5:30 (ESPN) | |
Game 2 Tue. April 17 Wizards at Raptors, 7 (NBA TV) | |
Game 3 Fri. April 20 Raptors at Wizards, 8 (ESPN2) | |
Game 4 Sun. April 22 Raptors at Wizards, 6 (TNT) | |
Game 5* Wed. April 25 Wizards at Raptors, TBD | |
Game 6* Fri. April 27 Raptors at Wizards, TBD | |
Game 7* Sun. April 29 Wizards at Raptors, TBD | |
* if necessary |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="col-sm-4" style="width: 38.5%;margin-top:-20px;margin-bottom:10px;"> | |
<div class="btn-group" style="float:right;"> | |
<label id="text" style="">{{$glpost->attachment_no}}</label> | |
<button type="button" id="prev" class="prev btn btn-default" style = "width: 50px;height:25px;margin-right:1px;text-align: center;" onclick="getNext">PREV</button> | |
<button type="button" id="next" class="next btn btn-default" style = "width: 50px;height:25px;margin-left:1px;text-align: center;" onclick="getNext">NEXT</button> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts.accounting.header') | |
@section('content') | |
<style type="text/css"> | |
.select2-container--default .select2-selection--single{ | |
background-color: #faf2cc; | |
} | |
</style> | |
<section class="container main_section"> | |
<br><br><br><br><br><br><br> | |
<div class="flash-message top-message"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.add').on('click',function(){ | |
var main_std = $('.std').val(); | |
var main_min = $('.min').val(); | |
var main_max = $('.max').val(); | |
<input type="hidden" class="selling_std" name="selling_std[]" value="'+main_std+'"> \ | |
<input type="hidden" class="selling_min" name="selling_min[]" value="'+main_min+'"> \ | |
<input type="hidden" class="selling_max" name="selling_max[]" value="'+main_max+'"> \ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Teacher: Class if basura ko asa man ko ninyo ilabay, nabubulok o di nabubulok? | |
Dingdong: ai sa di nabubulok ma’am. | |
Teacher: ngano man? | |
Dingdong: ai, alang kay plastic man ka ma’am. | |
********** * | |
Sa Math Class.. | |
Teacher: kung naa koy 1 ka piraso nga karne ug tungaon nako, pila na ka piraso? | |
Juan: 2 mam! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select sd_headers.dr_date as date, sd_headers.id as dr_id, partners.name as partner_name, item_categories.name as item_cat, item_subcategories.name as item_sub_cat, | |
sd_details.price as amount, | |
( | |
select sum(bill_sub_details.amount) from bill_sub_details | |
INNER JOIN bill_headers on bill_sub_details.bill_id = bill_headers.id | |
where bill_headers.status in ('Approved','Printed') | |
and bill_sub_details.dr_id = sd_details.dr_id | |
) as bill | |
from sd_details |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gross_proft: | |
select sd_headers.dr_type as type, items.description as item_desc, item_categories.name as item_cat, item_subcategories.name as item_sub_cat, | |
sd_details.qty, case | |
when sd_details.type = 'base' then (SELECT bulk_units.name from bulk_units where bulk_units.id = sd_details.uom) | |
ELSE | |
(select short from uoms where uoms.id = sd_details.uom) | |
end as uom, sd_details.price as net_price, sd_details.qty * sd_details.price as sales_price, sd_details.price as cost, | |
(sd_details.qty * sd_details.price) - sd_details.price as margin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ANAK: tay ang oten ba sa akong classmate morag sampalok. | |
TATAY: hahaha…ngano man nak? gamay? | |
ANAK: dli …ASLUM.. | |
…nyhahahaha | |
*** | |
SI JUAN NAG BAKASYON SA RESORT..NAGHIGDA-HIGDA SIYA DUOL SA BEACH..UNYA NAAY NI AGI NGA AMERKANO | |
AMERKANO: hey, are u relaxing? | |
JUAN: no..! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
else if(Input::get('emp_print')){ | |
PDF::SetTitle('Employee ID'); | |
PDF::SetFont('dejavusans', '', 10); | |
PDF::SetMargins(15, 15, 0, true); | |
//PDF::AddPage('L'); | |
//TCPDF::setEqualColumns(3,0,''); | |
PDF::AddPage(); | |
$id = Input::get('Emp_id'); | |
$info = PatientInfo::where('id',$id)->first(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\Booking; | |
use Illuminate\Http\Request; | |
use App\Http\Requests; | |
use App\Http\Controllers\Controller; | |
use App\BookingService; | |
use App\BookingServiceType; | |
use App\BookingTripType; |