homepage design medet
This commit is contained in:
commit
ef5a86052b
|
|
@ -11,7 +11,7 @@ if (!function_exists('money')) {
|
|||
function money($amount, \App\Models\Currency $currency = null)
|
||||
{
|
||||
if(!$currency){
|
||||
return number_format($amount,0,'.',',').' manat';
|
||||
return number_format($amount,2,'.',',').' manat';
|
||||
}
|
||||
return $currency->symbol_left . number_format($amount, $currency->decimal_place, $currency->decimal_point,
|
||||
$currency->thousand_point) . $currency->symbol_right;
|
||||
|
|
@ -62,3 +62,30 @@ if(!function_exists('organisers')){
|
|||
return \Illuminate\Support\Facades\Auth::user()->account->organisers;
|
||||
}
|
||||
}
|
||||
if ( ! function_exists('sanitise')) {
|
||||
/**
|
||||
* @param string $input
|
||||
* @return string
|
||||
*/
|
||||
function sanitise($input)
|
||||
{
|
||||
$clear = clean($input); // Package to remove code "mews/purifier"
|
||||
$clear = strip_tags($clear);
|
||||
$clear = html_entity_decode($clear);
|
||||
$clear = urldecode($clear);
|
||||
$clear = preg_replace('~[\r\n\t]+~', ' ', trim($clear));
|
||||
$clear = preg_replace('/ +/', ' ', $clear);
|
||||
return $clear;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $input
|
||||
* @return string
|
||||
*/
|
||||
function clean_whitespace($input)
|
||||
{
|
||||
$clear = preg_replace('~[\r\n\t]+~', ' ', trim($input));
|
||||
$clear = preg_replace('/ +/', ' ', $clear);
|
||||
return $clear;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers\API;
|
||||
|
||||
use App\Models\Category;
|
||||
use App\Models\Event;
|
||||
use Illuminate\Http\Request;
|
||||
use App\Http\Controllers\Controller;
|
||||
|
||||
class PublicController extends Controller
|
||||
{
|
||||
public function getCategories($parent_id = false){
|
||||
$categories = Category::select('title_tm','title_ru','id','parent_id');
|
||||
|
||||
if($parent_id)
|
||||
$categories->children($parent_id);
|
||||
else
|
||||
$categories->main();
|
||||
|
||||
return $categories->get();
|
||||
}
|
||||
|
||||
public function getEvents($cat_id = null, Request $request){
|
||||
$date = $request->get('date');
|
||||
//$cat_id = $request->get('cat_id');
|
||||
|
||||
$e_query = Event::onLive();
|
||||
if(!empty($cat_id)){
|
||||
$category = Category::findOrFail($cat_id);
|
||||
|
||||
if($category->parent_id > 0){
|
||||
$e_query->where('sub_category_id',$category->id);
|
||||
}
|
||||
else{
|
||||
$e_query->where('category_id',$category->id);
|
||||
}
|
||||
}
|
||||
if(!empty($date)){
|
||||
$e_query->whereDate('start_date','>=',Carbon::parse($date));
|
||||
}
|
||||
|
||||
return $e_query->select('id','title','start_date')
|
||||
->onLive()
|
||||
->paginate(8);
|
||||
}
|
||||
|
||||
public function getEvent($id){
|
||||
$event = Event::with('images')->findOrFail($id);
|
||||
return $event;
|
||||
}
|
||||
}
|
||||
|
|
@ -38,13 +38,15 @@ class CategoryCrudController extends CrudController
|
|||
['name'=>'id','type'=>'text','label'=>'Id'],
|
||||
['name'=>'title_tm','type'=>'text','label'=>'Title tm'],
|
||||
['name'=>'title_ru','type'=>'text','label'=>'Title ru'],
|
||||
['name'=>'view_type','type'=>'text','label'=>'Type'],
|
||||
['name'=>'view_type','type'=>'text','label'=>'View Type'],
|
||||
['name'=>'events_limit','type'=>'text','label'=>'Event limit'],
|
||||
['name'=>'parent_id','type'=>'text','label'=>'Parent'],
|
||||
]);
|
||||
$this->crud->addFields([
|
||||
['name'=>'title_tm','type'=>'text','label'=>'Title tm'],
|
||||
['name'=>'title_ru','type'=>'text','label'=>'Title ru'],
|
||||
['name'=>'view_type','type' =>'enum', 'label'=>'Type']
|
||||
['name'=>'view_type','type' =>'enum', 'label'=>'View Type'],
|
||||
['name'=>'events_limit','type'=>'number','label'=>'Event limit'],
|
||||
]);
|
||||
$this->crud->enableReorder('title_tm', 2);
|
||||
$this->crud->allowAccess('reorder');
|
||||
|
|
|
|||
|
|
@ -280,8 +280,8 @@ class EventCheckoutController extends Controller
|
|||
return view('Public.ViewEvent.Embedded.EventPageCheckout', $data); // <--- todo check this out
|
||||
}
|
||||
|
||||
return view('Public.ViewEvent.EventPageCheckout', $data);
|
||||
// return view('Bilettm.ViewEvent.EventPageCheckout', $data);
|
||||
// return view('Public.ViewEvent.EventPageCheckout', $data);
|
||||
return view('Bilettm.ViewEvent.CheckoutPage', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -381,7 +381,7 @@ class EventCheckoutController extends Controller
|
|||
$orderService->calculateFinalCosts();
|
||||
$secondsToExpire = Carbon::now()->diffInSeconds($order_session['expires']);
|
||||
$transaction_data += [
|
||||
'amount' => $orderService->getGrandTotal()*100,//todo multiply by 100
|
||||
'amount' => $orderService->getGrandTotal()*100,//multiply by 100 to obtain tenge
|
||||
'currency' => 934,
|
||||
'sessionTimeoutSecs' => $secondsToExpire,
|
||||
'description' => 'Order for customer: ' . $request->get('order_email'),
|
||||
|
|
@ -584,17 +584,17 @@ class EventCheckoutController extends Controller
|
|||
$order->is_payment_received = isset($request_data['pay_offline']) ? 0 : 1;
|
||||
|
||||
// Business details is selected, we need to save the business details
|
||||
if (isset($request_data['is_business']) && (bool)$request_data['is_business']) {
|
||||
$order->is_business = $request_data['is_business'];
|
||||
$order->business_name = sanitise($request_data['business_name']);
|
||||
$order->business_tax_number = sanitise($request_data['business_tax_number']);
|
||||
$order->business_address_line_one = sanitise($request_data['business_address_line1']);
|
||||
$order->business_address_line_two = sanitise($request_data['business_address_line2']);
|
||||
$order->business_address_state_province = sanitise($request_data['business_address_state']);
|
||||
$order->business_address_city = sanitise($request_data['business_address_city']);
|
||||
$order->business_address_code = sanitise($request_data['business_address_code']);
|
||||
|
||||
}
|
||||
// if (isset($request_data['is_business']) && (bool)$request_data['is_business']) {
|
||||
// $order->is_business = $request_data['is_business'];
|
||||
// $order->business_name = sanitise($request_data['business_name']);
|
||||
// $order->business_tax_number = sanitise($request_data['business_tax_number']);
|
||||
// $order->business_address_line_one = sanitise($request_data['business_address_line1']);
|
||||
// $order->business_address_line_two = sanitise($request_data['business_address_line2']);
|
||||
// $order->business_address_state_province = sanitise($request_data['business_address_state']);
|
||||
// $order->business_address_city = sanitise($request_data['business_address_city']);
|
||||
// $order->business_address_code = sanitise($request_data['business_address_code']);
|
||||
//
|
||||
// }
|
||||
|
||||
// Calculating grand total including tax
|
||||
$orderService = new OrderService($ticket_order['order_total'], $ticket_order['total_booking_fee'], $event);
|
||||
|
|
@ -790,6 +790,7 @@ class EventCheckoutController extends Controller
|
|||
return view('Public.ViewEvent.Embedded.EventPageViewOrder', $data);
|
||||
}
|
||||
|
||||
// return view('Bilettm.ViewEvent.ViewOrderPage', $data);
|
||||
return view('Public.ViewEvent.EventPageViewOrder', $data);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -229,6 +229,7 @@ class EventController extends MyBaseController
|
|||
$event->description = strip_tags($request->get('description'));
|
||||
$event->start_date = $request->get('start_date');
|
||||
$event->category_id = $request->get('category_id');
|
||||
$event->sub_category_id = $request->get('sub_category_id');
|
||||
$event->google_tag_manager_code = $request->get('google_tag_manager_code');
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -22,23 +22,20 @@ use Carbon\Carbon;
|
|||
class PublicController extends Controller
|
||||
{
|
||||
public function showHomePage(){
|
||||
$cinema = Event::cinema()
|
||||
->onLive()
|
||||
->take(11)
|
||||
->get();
|
||||
$cinema = Category::where('view_type','cinema')
|
||||
->categoryLiveEvents(21)
|
||||
->first();
|
||||
|
||||
$theatre = Event::theatre()
|
||||
->onLive()
|
||||
->take(6)
|
||||
->get();
|
||||
$theatre = Category::where('view_type','theatre')
|
||||
->categoryLiveEvents(6)
|
||||
->first();
|
||||
|
||||
$musical = Event::musical()
|
||||
->onLive()
|
||||
->take(8)
|
||||
->get();
|
||||
$musical =Category::where('view_type','concert')
|
||||
->categoryLiveEvents(12)
|
||||
->first();
|
||||
|
||||
$sliders = Slider::where('active',1)->get();
|
||||
|
||||
//dd($cinema->events->first());
|
||||
return view('Bilettm.Public.HomePage')->with([
|
||||
'cinema' => $cinema,
|
||||
'theatre' => $theatre,
|
||||
|
|
@ -75,7 +72,7 @@ class PublicController extends Controller
|
|||
$e_query->whereDate('start_date','>=',Carbon::parse($date));
|
||||
}
|
||||
|
||||
$events = $e_query->paginate(10);
|
||||
$events = $e_query->with('images')->paginate(5);
|
||||
$navigation = $nav_query->get();
|
||||
// dd($events);
|
||||
return view('Bilettm.Public.EventsPage')->with([
|
||||
|
|
@ -85,10 +82,41 @@ class PublicController extends Controller
|
|||
]);
|
||||
}
|
||||
|
||||
public function showCategoryEvents($cat_id, Request $request){
|
||||
$date = $request->get('date');
|
||||
$popular = $request->get('popular');
|
||||
|
||||
$category = Category::select('id','title_tm','title_ru','view_type','events_limit','parent_id')
|
||||
->findOrFail($cat_id);
|
||||
|
||||
if($category->parent_id>0){
|
||||
$events = $category->cat_events()
|
||||
->onLive()
|
||||
->orderBy($popular ? 'start_date' : 'views')
|
||||
->get();
|
||||
return view("Bilettm.EventsList.subCategoryList")->with([
|
||||
'category' => $category,
|
||||
'events' => $events
|
||||
]);
|
||||
}
|
||||
else{
|
||||
$subCats = $category->children()
|
||||
->withLiveEvents($date,$category->events_limit,$popular)
|
||||
->get();
|
||||
|
||||
// $events = $e_query->with('images')->paginate(5);
|
||||
// dd($subCats->first()->cat_events);
|
||||
return view("Bilettm.EventsList.".$category->view_type)->with([
|
||||
'sub_cats' => $subCats,
|
||||
'category' => $category,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
public function search(SearchRequest $request){
|
||||
//todo implement with elastick search and scout
|
||||
$query = $request->get('q');
|
||||
$events = Event::where('title','like',"%{$query}%")->get();
|
||||
$events = Event::where('title','like',"%{$query}%")->paginate(10);
|
||||
|
||||
return view('Bilettm.Public.SearchResults')
|
||||
->with([
|
||||
|
|
@ -114,12 +142,16 @@ class PublicController extends Controller
|
|||
|
||||
public function subscribe(SubscribeRequest $request){
|
||||
$email = $request->get('email');
|
||||
//todo validate email
|
||||
$subscribe = Subscriber::updateOrCreate(['email'=>$email,'active'=>1]);
|
||||
|
||||
if($subscribe){
|
||||
session()->flash('success','Subscription successfully');
|
||||
session()->flash('message','Subscription successfully');
|
||||
}
|
||||
|
||||
return redirect()->back();
|
||||
return response()->json([
|
||||
'status' => 'success',
|
||||
'message' => 'Subscription successfully',
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,19 +1,23 @@
|
|||
<?php
|
||||
|
||||
Route::group(['prefix' => 'api', 'middleware' => 'auth:api'], function () {
|
||||
Route::group(['prefix' => 'api'], function () {
|
||||
|
||||
/*
|
||||
* ---------------
|
||||
* Organisers
|
||||
* ---------------
|
||||
*/
|
||||
Route::get('category/{parent_id?}','API\PublicController@getCategories');
|
||||
Route::get('events/{cat_id?}','API\PublicController@getEvents');
|
||||
|
||||
Route::group(['prefix' =>'admin', 'middleware' => 'auth:api'], function (){
|
||||
/*
|
||||
* ---------------
|
||||
* Organisers
|
||||
* ---------------
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
* ---------------
|
||||
* Events
|
||||
* ---------------
|
||||
*/
|
||||
/*
|
||||
* ---------------
|
||||
* Events
|
||||
* ---------------
|
||||
*/
|
||||
Route::resource('events', 'API\EventsApiController');
|
||||
|
||||
|
||||
|
|
@ -44,11 +48,11 @@ Route::group(['prefix' => 'api', 'middleware' => 'auth:api'], function () {
|
|||
*/
|
||||
|
||||
|
||||
Route::get('/', function () {
|
||||
return response()->json([
|
||||
'Hello' => Auth::guard('api')->user()->full_name . '!'
|
||||
]);
|
||||
// Route::get('/', function () {
|
||||
// return response()->json([
|
||||
// 'Hello' => Auth::guard('api')->user()->full_name . '!'
|
||||
// ]);
|
||||
// });
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
|
|
@ -41,16 +41,6 @@ Route::group(
|
|||
'as' => 'logout',
|
||||
]);
|
||||
|
||||
|
||||
Route::get('/terms_and_conditions', [
|
||||
'as' => 'termsAndConditions',
|
||||
function () {
|
||||
return 'TODO: add terms and cond';
|
||||
}
|
||||
]);
|
||||
|
||||
|
||||
|
||||
Route::group(['middleware' => ['installed']], function () {
|
||||
|
||||
/*
|
||||
|
|
@ -124,12 +114,12 @@ Route::group(
|
|||
/**
|
||||
* Events by category
|
||||
*/
|
||||
Route::get('/{cat_id?}/{cat_slug?}', [
|
||||
Route::get('/{cat_id}/{cat_slug?}', [
|
||||
'as' => 'showCategoryEventsPage',
|
||||
'uses' => 'PublicController@showEvents',
|
||||
'uses' => 'PublicController@showCategoryEvents',
|
||||
]);
|
||||
|
||||
Route::post('/{cat_id?}/{cat_slug?}', [
|
||||
Route::post('/{cat_id}/{cat_slug?}', [
|
||||
'as' => 'postEventsPage',
|
||||
'uses' => 'PublicController@showEvents',
|
||||
]);
|
||||
|
|
@ -344,28 +334,11 @@ Route::group(
|
|||
]
|
||||
);
|
||||
|
||||
Route::get('{event_id}', function ($event_id) {
|
||||
return Redirect::route('showEventDashboard', [
|
||||
'event_id' => $event_id,
|
||||
]);
|
||||
});
|
||||
Route::get('{event_id}', 'EventDashboardController@showDashboard');
|
||||
|
||||
/*
|
||||
* @todo Move to a controller
|
||||
*/
|
||||
Route::get('{event_id}/go_live', [
|
||||
'as' => 'MakeEventLive',
|
||||
function ($event_id) {
|
||||
$event = \App\Models\Event::scope()->findOrFail($event_id);
|
||||
$event->is_live = 1;
|
||||
$event->save();
|
||||
\Session::flash('message',
|
||||
'Event Successfully Made Live! You can undo this action in event settings page.');
|
||||
|
||||
return Redirect::route('showEventDashboard', [
|
||||
'event_id' => $event_id,
|
||||
]);
|
||||
}
|
||||
'uses'=>'EventController@makeEventLive'
|
||||
]);
|
||||
|
||||
/*
|
||||
|
|
@ -748,16 +721,13 @@ Route::group(
|
|||
'uses' =>'PublicController@subscribe'
|
||||
]);
|
||||
|
||||
Route::get('/terms_and_conditions', [
|
||||
'as' => 'termsAndConditions',
|
||||
function () {
|
||||
return 'TODO: add terms and cond';
|
||||
}
|
||||
]);
|
||||
// Route::get('/terms_and_conditions', [
|
||||
// 'as' => 'termsAndConditions',
|
||||
// function () {
|
||||
// return 'TODO: add terms and cond';
|
||||
// }
|
||||
// ]);
|
||||
|
||||
Route::get('/itemlist', function (){
|
||||
return view('Bilettm.Partials.ItemsList');
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ class GenerateTicket extends Job implements ShouldQueue
|
|||
Log::info("Ticket generated!");
|
||||
} catch(\Exception $e) {
|
||||
Log::error("Error generating ticket. This can be due to permissions on vendor/nitmedia/wkhtml2pdf/src/Nitmedia/Wkhtml2pdf/lib. This folder requires write and execute permissions for the web user");
|
||||
Log::error("Error message. " . $e->getMessage());
|
||||
Log::error("Error message. " . $e->getMessage()); //Path must be absolute ("/tmp/")
|
||||
Log::error("Error stack trace" . $e->getTraceAsString());
|
||||
$this->fail($e);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ use App\Models\Order;
|
|||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Queue\InteractsWithQueue;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
class SendOrderNotification extends Job implements ShouldQueue
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,7 +9,9 @@
|
|||
namespace App\Models;
|
||||
|
||||
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Config;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
class Category extends \Illuminate\Database\Eloquent\Model{
|
||||
|
|
@ -58,18 +60,67 @@ class Category extends \Illuminate\Database\Eloquent\Model{
|
|||
return $this->hasMany(\App\Models\Event::class);
|
||||
}
|
||||
|
||||
public function scopeMain($query){
|
||||
return $query->where('depth',1)->orderBy('lft','asc');
|
||||
}
|
||||
public function scopeSub($query){
|
||||
return $query->where('depth',2)->orderBy('lft','asc');
|
||||
public function cat_events(){
|
||||
return $this->hasMany(\App\Models\Event::class,'sub_category_id')
|
||||
->withCount(['stats as views' => function($q){
|
||||
$q->select(DB::raw("SUM(views) as v"));
|
||||
}]);
|
||||
}
|
||||
|
||||
public function getChildren($parent_id){
|
||||
return $this->where('parent_id',$parent_id)->orderBy('lft','asc');
|
||||
public function scopeCategoryLiveEvents($query,$limit){
|
||||
// dd($this->view_type);
|
||||
return $query->select('id','title_tm','title_ru','lft')
|
||||
->orderBy('lft')
|
||||
->with(['events' => function($q) use($limit){
|
||||
$q->select('id','title','description','category_id','sub_category_id','start_date')
|
||||
->limit($limit)
|
||||
->with('starting_ticket')
|
||||
->withCount(['stats as views' => function($q){
|
||||
$q->select(DB::raw("SUM(views) as v"));
|
||||
}])
|
||||
->onLive();
|
||||
}]);
|
||||
}
|
||||
|
||||
public function parent(){
|
||||
return $this->belongsTo(Category::class,'parent_id');
|
||||
}
|
||||
|
||||
public function children(){
|
||||
return $this->hasMany(Category::class,'parent_id')
|
||||
->select('id','title_ru','title_tm','parent_id','lft')
|
||||
->orderBy('lft');
|
||||
}
|
||||
public function scopeMain($query){
|
||||
return $query->where('depth',1)->orderBy('lft','asc');
|
||||
}
|
||||
|
||||
public function scopeSub($query){
|
||||
return $query->where('depth',2)->orderBy('lft','asc');
|
||||
}
|
||||
|
||||
public function scopeChildren($query,$parent_id){
|
||||
return $query->where('parent_id',$parent_id)->orderBy('lft','asc');
|
||||
}
|
||||
|
||||
public function scopeWithLiveEvents($query, $date = false, $popular = true){
|
||||
$limit = 8;
|
||||
return $query->with(['cat_events' => function($query) use ($date, $limit, $popular) {
|
||||
$query->select('id','title','description','category_id','sub_category_id','start_date')
|
||||
->limit($limit)
|
||||
->with('starting_ticket')
|
||||
->withCount(['stats as views' => function($q){
|
||||
$q->select(DB::raw("SUM(views) as v"));}])
|
||||
->onLive();//event scope onLive get only live events
|
||||
if($date)
|
||||
$query->whereDate('end_date','>=',Carbon::parse($date));
|
||||
|
||||
if($popular)
|
||||
$query->orderBy('views','desc');
|
||||
else
|
||||
$query->orderBy('start_date');
|
||||
}]);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -4,6 +4,7 @@ namespace App\Models;
|
|||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Str;
|
||||
use URL;
|
||||
|
||||
|
|
@ -107,6 +108,14 @@ class Event extends MyBaseModel
|
|||
return $this->hasMany(\App\Models\Ticket::class);
|
||||
}
|
||||
|
||||
public function starting_ticket(){
|
||||
return $this->tickets()
|
||||
->select('id','ticket_date','event_id','price')
|
||||
->whereDate('ticket_date','>=',Carbon::now(\config('app.timezone')))
|
||||
->orderBy('ticket_date')
|
||||
->orderBy('price')
|
||||
->limit(2); // limit 1 returns null ???
|
||||
}
|
||||
/**
|
||||
* The stats associated with the event.
|
||||
*
|
||||
|
|
@ -117,6 +126,9 @@ class Event extends MyBaseModel
|
|||
return $this->hasMany(\App\Models\EventStats::class);
|
||||
}
|
||||
|
||||
public function views(){
|
||||
return $this->stats()->sum('views');
|
||||
}
|
||||
/**
|
||||
* The affiliates associated with the event.
|
||||
*
|
||||
|
|
@ -288,7 +300,7 @@ class Event extends MyBaseModel
|
|||
*/
|
||||
public function getCurrencySymbolAttribute()
|
||||
{
|
||||
return $this->currency->symbol_left;
|
||||
return $this->currency->symbol_left ?? '';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -451,6 +463,10 @@ ICSTemplate;
|
|||
return $icsTemplate;
|
||||
}
|
||||
|
||||
public function getSeansCount(){
|
||||
$seans = $this->tickets()->distinct()->orderBy('ticket_date')->count();
|
||||
return $seans != 0 ? $seans. ' seansa' : ''; //todo get from translate
|
||||
}
|
||||
/**
|
||||
* @param integer $accessCodeId
|
||||
* @return bool
|
||||
|
|
@ -460,21 +476,14 @@ ICSTemplate;
|
|||
return (is_null($this->access_codes()->where('id', $accessCodeId)->first()) === false);
|
||||
}
|
||||
|
||||
|
||||
public function scopeCinema($query){
|
||||
return $query->where('event_image_position','cinema');
|
||||
}
|
||||
|
||||
public function scopeTheatre($query){
|
||||
return $query->where('event_image_position','theatre');
|
||||
}
|
||||
|
||||
public function scopeMusical($query){
|
||||
return $query->where('event_image_position','musical');
|
||||
}
|
||||
|
||||
public function scopeOnLive($query){
|
||||
$query->whereDate('end_date','>',Carbon::now('Asia/Ashgabat'));
|
||||
return $query->where('is_live',1);
|
||||
return$query->whereDate('end_date','>=',Carbon::now(\config('app.timezone')))
|
||||
->where('is_live',1)
|
||||
->withCount(['images as image_url' => function($q){
|
||||
$q->select(DB::raw("image_path as imgurl"))
|
||||
->orderBy('created_at','desc')
|
||||
->limit(1);
|
||||
}] );
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class AddEventsLimitToCategoriesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('categories', function (Blueprint $table) {
|
||||
$table->smallInteger('events_limit')->default(6);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('categories', function (Blueprint $table) {
|
||||
$table->dropColumn('events_limit');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
@ -6694,6 +6694,7 @@ $.cf = {
|
|||
oDTP._setTimeFormatArray(); // Set TimeFormatArray
|
||||
oDTP._setDateTimeFormatArray(); // Set DateTimeFormatArray
|
||||
|
||||
console.log($(oDTP.element).data('parentelement') + " " + $(oDTP.element).attr('data-parentelement'));
|
||||
if($(oDTP.element).data('parentelement') !== undefined)
|
||||
{
|
||||
oDTP.settings.parentElement = $(oDTP.element).data('parentelement');
|
||||
|
|
@ -7911,7 +7912,8 @@ $.cf = {
|
|||
{
|
||||
$(document).on("click.DateTimePicker", function(e)
|
||||
{
|
||||
oDTP._hidePicker("");
|
||||
if (oDTP.oData.bElemFocused)
|
||||
oDTP._hidePicker("");
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -9628,6 +9630,10 @@ $.cf = {
|
|||
showMessage(data.message);
|
||||
}
|
||||
|
||||
if (typeof data.redirectUrl !== 'undefined') {
|
||||
window.location.href = data.redirectUrl;
|
||||
}
|
||||
|
||||
switch (data.status) {
|
||||
case 'success':
|
||||
$('#' + deleteType + '_' + deleteId).fadeOut();
|
||||
|
|
|
|||
|
|
@ -1,3 +1,11 @@
|
|||
a:hover{
|
||||
color: rgba(255, 255, 255, .8);
|
||||
}
|
||||
|
||||
a:focus{
|
||||
color: rgba(255, 255, 255, .8);
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: unset;
|
||||
padding: 0 7.2% !important; }
|
||||
|
|
@ -198,11 +206,12 @@ article > .u-block-hover__additional--partially-slide-up {
|
|||
#kinoteator .tab-ozi a.nav-link.active {
|
||||
background-color: unset; }
|
||||
#kinoteator .tab-ozi {
|
||||
margin-top: 70px; }
|
||||
margin-top: 7px; }
|
||||
#kinoteator .tab-ozi .nav.u-nav-v1-1 {
|
||||
padding: 0 5px; }
|
||||
#kinoteator .owl-nav.disabled {
|
||||
display: block; }
|
||||
display: block;
|
||||
font-size: 35px;}
|
||||
#kinoteator .owl-nav.disabled .owl-prev span, #kinoteator .owl-nav.disabled .owl-next span {
|
||||
font-size: 30px; }
|
||||
|
||||
|
|
@ -262,7 +271,7 @@ article.u-block-hover img {
|
|||
background-color: #d33d33;
|
||||
height: fit-content;
|
||||
font-size: 20px;
|
||||
padding: 15px 60px;
|
||||
padding: 12px 60px;
|
||||
border-radius: 5px;
|
||||
margin-right: 5px;
|
||||
transition-property: background-color;
|
||||
|
|
@ -282,13 +291,14 @@ article.u-block-hover img {
|
|||
background-color: unset;
|
||||
border-bottom: 2px solid #ffffff; }
|
||||
#konserty .tab-ozi {
|
||||
margin-top: 70px; }
|
||||
margin-top: 20px; }
|
||||
#konserty .tab-ozi .nav.u-nav-v1-1 {
|
||||
padding: 0 5px; }
|
||||
#konserty .tab-ozi .nav.u-nav-v1-1 .dropdown-menu a {
|
||||
color: #000000; }
|
||||
#konserty .owl-nav.disabled {
|
||||
display: block; }
|
||||
display: block;
|
||||
font-size: 35px;}
|
||||
#konserty .owl-nav.disabled .owl-prev span, #konserty .owl-nav.disabled .owl-next span {
|
||||
font-size: 30px; }
|
||||
|
||||
|
|
@ -302,8 +312,8 @@ article.u-block-hover img {
|
|||
width: 100%;}
|
||||
#kinoteator-tab1 .owl-nav, .movie-items-group .owl-nav {
|
||||
position: absolute;
|
||||
top: -50px;
|
||||
right: 5px; }
|
||||
top: -63px;
|
||||
right: 275px; }
|
||||
#kinoteator-tab1 .owl-prev, #kinoteator-tab1 .owl-next, .movie-items-group .owl-prev, .movie-items-group .owl-next {
|
||||
border: 1px solid #000000;
|
||||
border-radius: 5px;
|
||||
|
|
@ -319,11 +329,13 @@ article.u-block-hover img {
|
|||
transition-duration: .2s; }
|
||||
#kinoteator-tab1 .owl-next, .movie-items-group .owl-next {
|
||||
background-image: url(../images/icons/right.png);
|
||||
background-size: 32px !important;
|
||||
background-size: 56px !important;
|
||||
width: 56px;
|
||||
border: none !important; }
|
||||
#kinoteator-tab1 .owl-prev, .movie-items-group .owl-prev {
|
||||
background-image: url(../images/icons/left.png);
|
||||
background-size: 32px !important;
|
||||
background-size: 56px !important;
|
||||
width: 56px;
|
||||
border: none !important; }
|
||||
#kinoteator-tab1 .owl-prev:hover, #kinoteator-tab1 .owl-next:hover, .movie-items-group .owl-prev:hover, .movie-items-group .owl-next:hover {
|
||||
border: 1px solid #7e7e7e; }
|
||||
|
|
@ -362,8 +374,8 @@ article.u-block-hover img {
|
|||
bottom: 0; }
|
||||
#konserty-tab1 .owl-nav {
|
||||
position: absolute;
|
||||
top: -50px;
|
||||
right: 5px; }
|
||||
top: -76px;
|
||||
right: 280px;}
|
||||
#konserty-tab1 .owl-prev, #konserty-tab1 .owl-next {
|
||||
border: 1px solid #ffffff;
|
||||
border-radius: 5px;
|
||||
|
|
@ -379,11 +391,13 @@ article.u-block-hover img {
|
|||
opacity: 0; }
|
||||
#konserty-tab1 .owl-next {
|
||||
background-image: url(../images/icons/w-right.png);
|
||||
background-size: 32px !important;
|
||||
background-size: 56px !important;
|
||||
width: 56px;
|
||||
border: none !important; }
|
||||
#konserty-tab1 .owl-prev {
|
||||
background-image: url(../images/icons/w-left.png);
|
||||
background-size: 32px !important;
|
||||
background-size: 56px !important;
|
||||
width: 56px;
|
||||
border: none !important; }
|
||||
#konserty-tab1 .owl-prev:hover, #konserty-tab1 .owl-next:hover {
|
||||
border: 1px solid rgba(255, 255, 255, 0.5); }
|
||||
|
|
@ -682,7 +696,7 @@ img.d2-img {
|
|||
padding-left: 0; }
|
||||
|
||||
#carousel-09-1 .js-prev {
|
||||
left: 10px !important;
|
||||
left: 30px !important;
|
||||
top: 50% !important;
|
||||
transform: translateY(-50%);
|
||||
background-image: url(../images/icons/t-left.png) !important;
|
||||
|
|
@ -1691,7 +1705,7 @@ input.reserved-seats ~ label svg {
|
|||
background-color: #d33d33;
|
||||
height: fit-content;
|
||||
font-size: 20px;
|
||||
padding: 15px 60px;
|
||||
padding: 12px 60px;
|
||||
border-radius: 5px;
|
||||
margin-right: 5px;
|
||||
transition-property: background-color;
|
||||
|
|
@ -1726,4 +1740,33 @@ input.reserved-seats ~ label svg {
|
|||
.buy_and_salary{
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
}
|
||||
|
||||
.modal-send{
|
||||
color: #ffffff;
|
||||
background-color: #d33d33;
|
||||
height: fit-content;
|
||||
font-size: 14px;
|
||||
padding: 5px 40px;
|
||||
border-radius: 5px;
|
||||
margin-right: 0;
|
||||
transition-property: background-color;
|
||||
transition-duration: .2s;
|
||||
}
|
||||
|
||||
.modal-dialog-centered{
|
||||
width: 60%;
|
||||
max-width: unset;
|
||||
}
|
||||
|
||||
.title-and-btn input, .title-and-btn textarea{
|
||||
border: 1px solid #000000;
|
||||
}
|
||||
|
||||
.modal-send:hover{
|
||||
color: rgba(255, 255, 255, .7);
|
||||
}
|
||||
|
||||
.u-carousel-v3 .slick-center{
|
||||
opacity: 1;
|
||||
}
|
||||
|
|
@ -35450,3 +35450,93 @@ p {
|
|||
font-size: 9px; }
|
||||
|
||||
/*# sourceMappingURL=styles.e-commerce.css.map */
|
||||
.humane,
|
||||
.humane-flatty {
|
||||
position: fixed;
|
||||
-moz-transition: all 0.4s ease-in-out;
|
||||
-webkit-transition: all 0.4s ease-in-out;
|
||||
-ms-transition: all 0.4s ease-in-out;
|
||||
-o-transition: all 0.4s ease-in-out;
|
||||
transition: all 0.4s ease-in-out;
|
||||
z-index: 100000;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
}
|
||||
.humane,
|
||||
.humane-flatty {
|
||||
font-family: Helvetica Neue, Helvetica, san-serif;
|
||||
font-size: 16px;
|
||||
top: 0;
|
||||
left: 30%;
|
||||
opacity: 0;
|
||||
width: 40%;
|
||||
color: #444;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
-webkit-border-bottom-right-radius: 3px;
|
||||
-webkit-border-bottom-left-radius: 3px;
|
||||
-moz-border-radius-bottomright: 3px;
|
||||
-moz-border-radius-bottomleft: 3px;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,0.5);
|
||||
-moz-transform: translateY(-100px);
|
||||
-webkit-transform: translateY(-100px);
|
||||
-ms-transform: translateY(-100px);
|
||||
-o-transform: translateY(-100px);
|
||||
transform: translateY(-100px);
|
||||
}
|
||||
.humane p,
|
||||
.humane-flatty p,
|
||||
.humane ul,
|
||||
.humane-flatty ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.humane ul,
|
||||
.humane-flatty ul {
|
||||
list-style: none;
|
||||
}
|
||||
.humane.humane-flatty-info,
|
||||
.humane-flatty.humane-flatty-info {
|
||||
background-color: #3498db;
|
||||
color: #FFF;
|
||||
}
|
||||
.humane.humane-flatty-success,
|
||||
.humane-flatty.humane-flatty-success {
|
||||
background-color: #18bc9c;
|
||||
color: #FFF;
|
||||
}
|
||||
.humane.humane-flatty-error,
|
||||
.humane-flatty.humane-flatty-error {
|
||||
background-color: #e74c3c;
|
||||
color: #FFF;
|
||||
}
|
||||
.humane-animate,
|
||||
.humane-flatty.humane-flatty-animate {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
-webkit-transform: translateY(0);
|
||||
-ms-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
.humane-animate:hover,
|
||||
.humane-flatty.humane-flatty-animate:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
.humane-js-animate,
|
||||
.humane-flatty.humane-flatty-js-animate {
|
||||
opacity: 1;
|
||||
-moz-transform: translateY(0);
|
||||
-webkit-transform: translateY(0);
|
||||
-ms-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
.humane-js-animate:hover,
|
||||
.humane-flatty.humane-flatty-js-animate:hover {
|
||||
opacity: 0.7;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
|
||||
}
|
||||
|
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
"name": "datetimepicker",
|
||||
|
||||
"description": "Responsive flat design jQuery DateTime Picker plugin for Web & Mobile",
|
||||
|
||||
"keywords": [
|
||||
"date",
|
||||
"time",
|
||||
|
|
@ -12,37 +14,30 @@
|
|||
"timepicker",
|
||||
"input"
|
||||
],
|
||||
|
||||
"version": "0.1.38",
|
||||
|
||||
"homepage": "https://nehakadam.github.io/DateTimePicker/",
|
||||
"main": [
|
||||
"dist/DateTimePicker.min.js",
|
||||
"dist/DateTimePicker.min.css"
|
||||
],
|
||||
|
||||
"main": ["dist/DateTimePicker.min.js", "dist/DateTimePicker.min.css"],
|
||||
|
||||
"authors": [
|
||||
{
|
||||
"name": "nehakadam"
|
||||
}
|
||||
{"name": "nehakadam"}
|
||||
],
|
||||
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com:nehakadam/DateTimePicker.git"
|
||||
},
|
||||
|
||||
"devDependencies": {
|
||||
"jquery": ">=1.0.0"
|
||||
},
|
||||
|
||||
"ignore": [
|
||||
"**/.*",
|
||||
"node_modules",
|
||||
"package.json"
|
||||
],
|
||||
"_release": "0.1.38",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "0.1.38",
|
||||
"commit": "36d272ac90c93ef45c5b8b228a517a932a0778bd"
|
||||
},
|
||||
"_source": "https://github.com/nehakadam/DateTimePicker.git",
|
||||
"_target": "^0.1.38",
|
||||
"_originalSource": "flat-datetimepicker",
|
||||
"_direct": true
|
||||
}
|
||||
]
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ module.exports = function(grunt)
|
|||
var sBanner = '/* ----------------------------------------------------------------------------- ' +
|
||||
'\n\n jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile' +
|
||||
'\n Version <%= pkg.version %>' +
|
||||
'\n Copyright (c)<%= grunt.template.today("yyyy") %> Lajpat Shah' +
|
||||
'\n Copyright (c)2014-<%= grunt.template.today("yyyy") %> Lajpat Shah' +
|
||||
'\n Contributors : https://github.com/nehakadam/DateTimePicker/contributors' +
|
||||
'\n Repository : https://github.com/nehakadam/DateTimePicker' +
|
||||
'\n Documentation : https://nehakadam.github.io/DateTimePicker' +
|
||||
|
|
@ -23,12 +23,12 @@ module.exports = function(grunt)
|
|||
options:
|
||||
{
|
||||
separator: '\n\n\n\n',
|
||||
stripBanners: true,
|
||||
stripBanners: true,
|
||||
banner: sBanner
|
||||
},
|
||||
|
||||
src: ['src/i18n/*', '!src/i18n/DateTimePicker-i18n.js'],
|
||||
dest: 'src/i18n/DateTimePicker-i18n.js',
|
||||
src: ['src/i18n/*', '!src/i18n/DateTimePicker-i18n.js'],
|
||||
dest: 'src/i18n/DateTimePicker-i18n.js',
|
||||
nonull: true
|
||||
}
|
||||
},
|
||||
|
|
@ -59,8 +59,8 @@ module.exports = function(grunt)
|
|||
{
|
||||
banner: sBanner,
|
||||
compress: {
|
||||
drop_console: true
|
||||
}
|
||||
drop_console: true
|
||||
}
|
||||
},
|
||||
build:
|
||||
{
|
||||
|
|
@ -98,12 +98,10 @@ module.exports = function(grunt)
|
|||
options:
|
||||
{
|
||||
strict: false,
|
||||
|
||||
curly: false,
|
||||
|
||||
eqeqeq: true,
|
||||
eqnull: true,
|
||||
browser: true,
|
||||
eqeqeq: true,
|
||||
eqnull: true,
|
||||
browser: true,
|
||||
devel: true,
|
||||
//unused: true,
|
||||
//undef: true,
|
||||
|
|
@ -111,14 +109,14 @@ module.exports = function(grunt)
|
|||
globals:
|
||||
{
|
||||
$: false,
|
||||
jQuery: false,
|
||||
define: false,
|
||||
require: false,
|
||||
module: false,
|
||||
DateTimePicker: true
|
||||
},
|
||||
jQuery: false,
|
||||
define: false,
|
||||
require: false,
|
||||
module: false,
|
||||
DateTimePicker: true
|
||||
},
|
||||
|
||||
force: true
|
||||
force: true
|
||||
}
|
||||
},
|
||||
|
||||
|
|
@ -147,8 +145,9 @@ module.exports = function(grunt)
|
|||
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||||
grunt.loadNpmTasks('grunt-contrib-csslint');
|
||||
|
||||
// Default task(s).
|
||||
grunt.registerTask('default', ['uglify', 'cssmin', 'copy']);
|
||||
grunt.registerTask('lang', ['concat:lang', 'copy:lang']);
|
||||
grunt.registerTask('lint', ['jshint', 'csslint']);
|
||||
// Default task(s).
|
||||
//
|
||||
grunt.registerTask('default', ['uglify', 'cssmin', 'copy']);
|
||||
grunt.registerTask('lang', ['concat:lang', 'copy:lang']);
|
||||
grunt.registerTask('lint', ['jshint', 'csslint']);
|
||||
};
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2017 Lajpat Shah
|
||||
Copyright (c) 2014-2019 Lajpat Shah
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ Users can change values using +/- buttons or type values directly into the textb
|
|||
For web, picker can be binded relative to reference element, were it will appear at the bottom of the element. For mobile, the picker can appear as a dialog box covering entire window.
|
||||
|
||||
|
||||
##Browser Support
|
||||
## Browser Support
|
||||
- Chrome, Firefox, Safari, Opera, IE 6+
|
||||
- Android 2.3+, iOS 6+, Windows Phone 8
|
||||
|
||||
|
|
@ -20,7 +20,7 @@ For web, picker can be binded relative to reference element, were it will appear
|
|||
For demo & api documentation visit [Plugin Page](http://nehakadam.github.io/DateTimePicker/)
|
||||
|
||||
|
||||
##Build System
|
||||
## Build System
|
||||
|
||||
- Install devDependencies listed in "package.json"
|
||||
|
||||
|
|
@ -36,7 +36,7 @@ Tasks configured in "Gruntfile.js"
|
|||
- Minify "src/DateTimePicker.css" to "dist/DateTimePicker.min.css"
|
||||
|
||||
|
||||
##Installations
|
||||
## Installations
|
||||
|
||||
- npm
|
||||
|
||||
|
|
@ -44,35 +44,39 @@ Tasks configured in "Gruntfile.js"
|
|||
|
||||
- bower
|
||||
|
||||
`bower install curioussolutions-datetimepicker`
|
||||
`bower install flat-datetimepicker`
|
||||
|
||||
##CDN
|
||||
## CDN
|
||||
DateTimePicker is hosted on [jsDelivr](http://www.jsdelivr.com).
|
||||
|
||||
Files - Latest
|
||||
|
||||
```
|
||||
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/datetimepicker/latest/DateTimePicker.min.css" />
|
||||
<script type="text/javascript" src="//cdn.jsdelivr.net/datetimepicker/latest/DateTimePicker.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/datetimepicker@latest/dist/DateTimePicker.min.css" />
|
||||
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/datetimepicker@latest/dist/DateTimePicker.min.js"></script>
|
||||
```
|
||||
|
||||
Files - Particular Version
|
||||
|
||||
```
|
||||
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/datetimepicker/<version>/DateTimePicker.min.css" />
|
||||
<script type="text/javascript" src="//cdn.jsdelivr.net/datetimepicker/<version>/DateTimePicker.min.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/datetimepicker@<version>/dist/DateTimePicker.min.css" />
|
||||
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/datetimepicker@<version>/dist/DateTimePicker.min.js"></script>
|
||||
```
|
||||
|
||||
##Authors
|
||||
## Authors
|
||||
[Neha Kadam](https://github.com/nehakadam): Developer
|
||||
|
||||
Special Thanks:
|
||||
- [Jean-Christophe Hoelt](https://github.com/j3k0) - NPM packaging. Few customization options.
|
||||
- [All Contributors](https://github.com/nehakadam/DateTimePicker/contributors)
|
||||
|
||||
Copyright 2017 [Lajpat Shah](https://github.com/lajpatshah)
|
||||
|
||||
Copyright 2014-2019 [Lajpat Shah](https://github.com/lajpatshah)
|
||||
|
||||
|
||||
##License
|
||||
**I can not actively maintain or reply quickly due to time constraints, please consider this point before using plugin.**
|
||||
|
||||
|
||||
## License
|
||||
|
||||
Licensed under the MIT License
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.17
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://nehakadam.github.io/DateTimePicker
|
||||
Documentation : https://github.com/nehakadam/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -1,13 +1 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
||||
----------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
.dtpicker-cont{top:25%}.dtpicker-overlay{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#20000000, endColorstr=#20000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#20000000, endColorstr=#20000000);zoom:1!important}
|
||||
.dtpicker-cont{top:25%}.dtpicker-overlay{zoom:1!important}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
@ -300,6 +300,7 @@ $.cf = {
|
|||
oDTP._setTimeFormatArray(); // Set TimeFormatArray
|
||||
oDTP._setDateTimeFormatArray(); // Set DateTimeFormatArray
|
||||
|
||||
console.log($(oDTP.element).data('parentelement') + " " + $(oDTP.element).attr('data-parentelement'));
|
||||
if($(oDTP.element).data('parentelement') !== undefined)
|
||||
{
|
||||
oDTP.settings.parentElement = $(oDTP.element).data('parentelement');
|
||||
|
|
@ -1517,7 +1518,8 @@ $.cf = {
|
|||
{
|
||||
$(document).on("click.DateTimePicker", function(e)
|
||||
{
|
||||
oDTP._hidePicker("");
|
||||
if (oDTP.oData.bElemFocused)
|
||||
oDTP._hidePicker("");
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
||||
----------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
.dtpicker-overlay{z-index:2000;display:none;min-width:300px;background:rgba(0,0,0,.2);font-size:12px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.dtpicker-mobile{position:fixed;top:0;left:0;width:100%;height:100%}.dtpicker-overlay *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.dtpicker-bg{width:100%;height:100%;font-family:Arial}.dtpicker-cont{border:1px solid #ECF0F1}.dtpicker-mobile .dtpicker-cont{position:relative;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-o-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);border:0}.dtpicker-content{margin:0 auto;padding:1em 0;max-width:500px;background:#fff}.dtpicker-mobile .dtpicker-content{width:97%}.dtpicker-subcontent{position:relative}.dtpicker-header{margin:.2em 1em}.dtpicker-header .dtpicker-title{color:#2980B9;text-align:center;font-size:1.1em}.dtpicker-header .dtpicker-close{position:absolute;top:-.7em;right:.3em;padding:.5em .5em 1em 1em;color:#FF3B30;font-size:1.5em;cursor:pointer}.dtpicker-header .dtpicker-close:hover{color:#FF3B30}.dtpicker-header .dtpicker-value{padding:.8em .2em .2em;color:#FF3B30;text-align:center;font-size:1.4em}.dtpicker-components{overflow:hidden;margin:1em;font-size:1.3em}.dtpicker-components *{margin:0;padding:0}.dtpicker-components .dtpicker-compOutline{display:inline-block;float:left}.dtpicker-comp2{width:50%}.dtpicker-comp3{width:33.3%}.dtpicker-comp4{width:25%}.dtpicker-comp5{width:20%}.dtpicker-comp6{width:16.66%}.dtpicker-comp7{width:14.285%}.dtpicker-components .dtpicker-comp{margin:2%;text-align:center}.dtpicker-components .dtpicker-comp>*{display:block;height:30px;color:#2980B9;text-align:center;line-height:30px}.dtpicker-components .dtpicker-comp>:hover{color:#2980B9}.dtpicker-components .dtpicker-compButtonEnable{opacity:1}.dtpicker-components .dtpicker-compButtonDisable{opacity:.5}.dtpicker-components .dtpicker-compButton{background:#FFF;font-size:140%;cursor:pointer}.dtpicker-components .dtpicker-compValue{margin:.4em 0;width:100%;border:0;background:#FFF;font-size:100%;-webkit-appearance:none;-moz-appearance:none}.dtpicker-overlay .dtpicker-compValue:focus{outline:0;background:#F2FCFF}.dtpicker-buttonCont{overflow:hidden;margin:.2em 1em}.dtpicker-buttonCont .dtpicker-button{display:block;padding:.6em 0;width:47%;background:#FF3B30;color:#FFF;text-align:center;font-size:1.3em;cursor:pointer}.dtpicker-buttonCont .dtpicker-button:hover{color:#FFF}.dtpicker-singleButton .dtpicker-button{margin:.2em auto}.dtpicker-twoButtons .dtpicker-buttonSet{float:left}.dtpicker-twoButtons .dtpicker-buttonClear{float:right}
|
||||
.dtpicker-overlay{z-index:2000;display:none;min-width:300px;background:rgba(0,0,0,.2);font-size:12px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.dtpicker-mobile{position:fixed;top:0;left:0;width:100%;height:100%}.dtpicker-overlay *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-webkit-tap-highlight-color:transparent}.dtpicker-bg{width:100%;height:100%;font-family:Arial}.dtpicker-cont{border:1px solid #ecf0f1}.dtpicker-mobile .dtpicker-cont{position:relative;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-o-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);border:none}.dtpicker-content{margin:0 auto;padding:1em 0;max-width:500px;background:#fff}.dtpicker-mobile .dtpicker-content{width:97%}.dtpicker-subcontent{position:relative}.dtpicker-header{margin:.2em 1em}.dtpicker-header .dtpicker-title{color:#2980b9;text-align:center;font-size:1.1em}.dtpicker-header .dtpicker-close{position:absolute;top:-.7em;right:.3em;padding:.5em .5em 1em 1em;color:#ff3b30;font-size:1.5em;cursor:pointer}.dtpicker-header .dtpicker-close:hover{color:#ff3b30}.dtpicker-header .dtpicker-value{padding:.8em .2em .2em .2em;color:#ff3b30;text-align:center;font-size:1.4em}.dtpicker-components{overflow:hidden;margin:1em 1em;font-size:1.3em}.dtpicker-components *{margin:0;padding:0}.dtpicker-components .dtpicker-compOutline{display:inline-block;float:left}.dtpicker-comp2{width:50%}.dtpicker-comp3{width:33.3%}.dtpicker-comp4{width:25%}.dtpicker-comp5{width:20%}.dtpicker-comp6{width:16.66%}.dtpicker-comp7{width:14.285%}.dtpicker-components .dtpicker-comp{margin:2%;text-align:center}.dtpicker-components .dtpicker-comp>*{display:block;height:30px;color:#2980b9;text-align:center;line-height:30px}.dtpicker-components .dtpicker-comp>:hover{color:#2980b9}.dtpicker-components .dtpicker-compButtonEnable{opacity:1}.dtpicker-components .dtpicker-compButtonDisable{opacity:.5}.dtpicker-components .dtpicker-compButton{background:#fff;font-size:140%;cursor:pointer}.dtpicker-components .dtpicker-compValue{margin:.4em 0;width:100%;border:none;background:#fff;font-size:100%;-webkit-appearance:none;-moz-appearance:none}.dtpicker-overlay .dtpicker-compValue:focus{outline:0;background:#f2fcff}.dtpicker-buttonCont{overflow:hidden;margin:.2em 1em}.dtpicker-buttonCont .dtpicker-button{display:block;padding:.6em 0;width:47%;background:#ff3b30;color:#fff;text-align:center;font-size:1.3em;cursor:pointer}.dtpicker-buttonCont .dtpicker-button:hover{color:#fff}.dtpicker-singleButton .dtpicker-button{margin:.2em auto}.dtpicker-twoButtons .dtpicker-buttonSet{float:left}.dtpicker-twoButtons .dtpicker-buttonClear{float:right}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.17
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://nehakadam.github.io/DateTimePicker
|
||||
Documentation : https://github.com/nehakadam/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
@ -300,6 +300,7 @@ $.cf = {
|
|||
oDTP._setTimeFormatArray(); // Set TimeFormatArray
|
||||
oDTP._setDateTimeFormatArray(); // Set DateTimeFormatArray
|
||||
|
||||
console.log($(oDTP.element).data('parentelement') + " " + $(oDTP.element).attr('data-parentelement'));
|
||||
if($(oDTP.element).data('parentelement') !== undefined)
|
||||
{
|
||||
oDTP.settings.parentElement = $(oDTP.element).data('parentelement');
|
||||
|
|
@ -1517,7 +1518,8 @@ $.cf = {
|
|||
{
|
||||
$(document).on("click.DateTimePicker", function(e)
|
||||
{
|
||||
oDTP._hidePicker("");
|
||||
if (oDTP.oData.bElemFocused)
|
||||
oDTP._hidePicker("");
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile
|
||||
Version 0.1.38
|
||||
Copyright (c)2017 Lajpat Shah
|
||||
Copyright (c)2014-2019 Lajpat Shah
|
||||
Contributors : https://github.com/nehakadam/DateTimePicker/contributors
|
||||
Repository : https://github.com/nehakadam/DateTimePicker
|
||||
Documentation : https://nehakadam.github.io/DateTimePicker
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ return array (
|
|||
'event_title' => 'Event Title',
|
||||
'event_title_placeholder' => 'E.g: :name\'s Interational Conference',
|
||||
'event_visibility' => 'Event Visibility',
|
||||
'go_live' => 'Event Successfully Made Live! You can undo this action in event settings page.',
|
||||
'n_attendees_for_event' => ':num Attendee(s) for event: :name (:date)',
|
||||
'no_events_yet' => 'No Event Yet!',
|
||||
'no_events_yet_text' => 'Looks like you have yet to create an event. You can create one by clicking the button below.',
|
||||
|
|
|
|||
|
|
@ -0,0 +1,625 @@
|
|||
@extends('Bilettm.Layouts.EventsPage')
|
||||
|
||||
@push('inner_content')
|
||||
|
||||
{{--@foreach($sub_cats as $cat)--}}
|
||||
{{--<div class="row kinoteator tab-part">--}}
|
||||
{{--<div class="tab-header d-flex justify-content-between col-12">--}}
|
||||
{{--<h2>{{$cat->title}}</h2>--}}
|
||||
{{--<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>--}}
|
||||
{{--<a class="btn btn-danger" href="{{$cat->url}}">Весь репертуар</a>--}}
|
||||
{{--</div>--}}
|
||||
{{--<div class="tab-ozi col-12">--}}
|
||||
|
||||
{{--<!-- Tab panes -->--}}
|
||||
{{--<div class="tab-content">--}}
|
||||
{{--<div class="container">--}}
|
||||
{{--<div class="row">--}}
|
||||
{{--@foreach($cat->cat_events as $event)--}}
|
||||
{{--<div class="col-3">--}}
|
||||
{{--@include('Bilettm.Partials.CinemaItem')--}}
|
||||
{{--</div>--}}
|
||||
{{--@endforeach--}}
|
||||
{{--</div>--}}
|
||||
{{--</div>--}}
|
||||
{{--</div>--}}
|
||||
{{--<!-- End Tab panes -->--}}
|
||||
{{--</div>--}}
|
||||
{{--</div>--}}
|
||||
{{--@endforeach--}}
|
||||
|
||||
<section class="movie-items-group firts-child">
|
||||
<div class="container">
|
||||
<div class="row kinoteator tab-part">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2 class="">Кинотеатр "Беркарар"</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<a class="" href="">Весь репертуар</a>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
<!-- Tab panes -->
|
||||
<div class="tab-content">
|
||||
<div class="kinoteator-tab1-wrapper">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/3d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/2d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/2d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/2d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/3d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/2d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/2d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset('assets/images/p4.png')}}">
|
||||
</div>
|
||||
<img src="{{asset('assets/images/icons/2d.svg')}}" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Tab panes -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="movie-items-group">
|
||||
<div class="container">
|
||||
<div class="row kinoteator tab-part">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2 class="">Киноконцертный зал "Туркменистан"</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<a class="" href="">Весь репертуар</a>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
<!-- Tab panes -->
|
||||
<div class="tab-content">
|
||||
<div class="kinoteator-tab1-wrapper">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/kzt/p1.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/3d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/1.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/kzt/p2.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/2d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/2.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/kzt/p3.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/2d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/3.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/kzt/p4.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/2d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/4.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Tab panes -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="movie-items-group">
|
||||
<div class="container">
|
||||
<div class="row kinoteator tab-part">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2 class="">Кинотеатр "Ашхабад"</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<a class="" href="">Весь репертуар</a>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
<!-- Tab panes -->
|
||||
<div class="tab-content">
|
||||
<div class="kinoteator-tab1-wrapper">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/ka/p1.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/3d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/1.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/ka/p2.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/2d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/2.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/ka/p3.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/2d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/3.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="assets/assets/img/kinoteator/ka/p4.png">
|
||||
</div>
|
||||
<img src="assets/assets/img/icons/2d.svg" class="d2-img">
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url(assets/assets/img/kinoteator/overlay/4.svg)">
|
||||
<div class="overlay-details smalll">
|
||||
<h2 class="title">Человек-паук <br> Вдали от дома</h2>
|
||||
<h4 class="date">В кино с 4 июля</h4>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="20px">
|
||||
<path id="Shape" d="M 25.41962051391602 23.95637512207031 C 24.13169288635254 23.95637512207031 22.97933578491211 24.46681022644043 22.09812164306641 25.26648902893066 L 10.01532936096191 18.20548248291016 C 10.10006237030029 17.81414985656738 10.16784763336182 17.42281913757324 10.16784763336182 17.01446914672852 C 10.16784763336182 16.60612297058105 10.10006237030029 16.21479225158691 10.01532936096191 15.82345771789551 L 21.96255111694336 8.830510139465332 C 22.87765884399414 9.681234359741211 24.08085250854492 10.20868301391602 25.41962051391602 10.20868301391602 C 28.23272323608398 10.20868301391602 30.50354385375977 7.9287428855896 30.50354385375977 5.104341506958008 C 30.50354385375977 2.2799391746521 28.23272323608398 0 25.41962051391602 0 C 22.60651397705078 0 20.33569526672363 2.2799391746521 20.33569526672363 5.104341506958008 C 20.33569526672363 5.512688636779785 20.40348052978516 5.904021739959717 20.48821449279785 6.29535436630249 L 8.54099178314209 13.28830146789551 C 7.625885963439941 12.43757820129395 6.422690391540527 11.91012954711914 5.083923816680908 11.91012954711914 C 2.270819425582886 11.91012954711914 0 14.19006824493408 0 17.01446914672852 C 0 19.8388729095459 2.270819425582886 22.11881256103516 5.083923816680908 22.11881256103516 C 6.422690391540527 22.11881256103516 7.625885963439941 21.59136390686035 8.54099178314209 20.74064064025879 L 20.60683822631836 27.81865882873535 C 20.5221061706543 28.17596435546875 20.47126579284668 28.5502815246582 20.47126579284668 28.92460250854492 C 20.47126579284668 31.66392707824707 22.69124794006348 33.89282608032227 25.41962051391602 33.89282608032227 C 28.14799308776855 33.89282608032227 30.36797142028809 31.66392707824707 30.36797142028809 28.92460250854492 C 30.36797142028809 26.18527030944824 28.14799308776855 23.95637512207031 25.41962051391602 23.95637512207031 L 25.41962051391602 23.95637512207031 Z">
|
||||
</path>
|
||||
</svg>
|
||||
Share</a>
|
||||
<a href="" class="like">
|
||||
<svg class="Shape_A26_Path_4" viewBox="0 0 34 30" fill="#ffffff" width="20px">
|
||||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
1000 Likes</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена билета: 60 TMT</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Tab panes -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="first-add-wrapper" style="margin: 100px 0;">
|
||||
<div class="container">
|
||||
<div class="row" style="padding: 0 20px;">
|
||||
<a href="" style="width: 100%">
|
||||
<img src="assets/assets/img/advs/first.png" style="width: 100%">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endpush
|
||||
|
|
@ -2,6 +2,6 @@
|
|||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: merdan
|
||||
* Date: 9/13/2019
|
||||
* Time: 16:31
|
||||
* Date: 9/24/2019
|
||||
* Time: 11:20
|
||||
*/
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: merdan
|
||||
* Date: 9/24/2019
|
||||
* Time: 11:49
|
||||
*/
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: merdan
|
||||
* Date: 9/24/2019
|
||||
* Time: 11:49
|
||||
*/
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: merdan
|
||||
* Date: 9/24/2019
|
||||
* Time: 11:49
|
||||
*/
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
@extends('Bilettm.Layouts.EventsPage')
|
||||
@push('inner_content')
|
||||
<section class="movie-items-group">
|
||||
<div class="container">
|
||||
<div class="row kinoteator tab-part">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2>{{$category->title}}</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<a class="btn btn-danger" href="{{$category->url}}">Весь репертуар</a>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
<!-- Nav tabs -->
|
||||
<ul class="nav u-nav-v1-1 g-mb-20" role="tablist" data-target="nav-1-1-default-hor-left" data-tabs-mobile-type="slide-up-down" data-btn-classes="btn btn-md btn-block rounded-0 u-btn-outline-lightgray g-mb-20">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" data-toggle="tab" href="" role="tab">Популярное</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" data-toggle="tab" href="" role="tab">Новые</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">Сегодня <i class="fa fa-caret-down"></i></a>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">SLink 1</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">SLink 2</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">SLink 3</a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">Дата <i class="fa fa-caret-down"></i></a>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">DLink 1</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">DLink 2</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">DLink 3</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- End Nav tabs -->
|
||||
|
||||
<!-- Tab panes -->
|
||||
<div class="tab-content">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@foreach($events as $event)
|
||||
<div class="col-3">
|
||||
@include('Bilettm.Partials.CinemaItem')
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- End Tab panes -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endpush
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
@extends('Bilettm.Layouts.EventsPage')
|
||||
@push('inner_content')
|
||||
<section id='cat_and_buttons'>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-lg-4 col-4">
|
||||
|
||||
<select id='vybor_select' >
|
||||
<option class="cat_op" >На этой недели</option>
|
||||
<option class="cat_op">Исполнители</option>
|
||||
<option class="cat_op">Мероприятие</option>
|
||||
<option class="cat_op">Концерты</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-8 col-lg-8 col-8">
|
||||
<div id='cat_buts'>
|
||||
@foreach($navigation as $nav)
|
||||
<a class=" btn btn-danger active_cat_but cat_but" href="{{$nav->url}}">{{$nav->title}}</a>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section id='opisanie_section'>
|
||||
@foreach($events as $event)
|
||||
@include('Bilettm.Partials.EventItem')
|
||||
@endforeach
|
||||
<div class="container film">
|
||||
<div class="row">
|
||||
<div class="col-md-9 col-lg-9 col-sm-9 col-9">
|
||||
{{$events->links('vendor.pagination.simple-bootstrap-4')}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endpush
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
@yield('after_styles')
|
||||
@stack('after_styles')
|
||||
|
||||
<!-- CSS Unify Theme -->
|
||||
<!-- CSS Unify Theme -->
|
||||
<link rel="stylesheet" href="{{asset('assets/stylesheet/styles.e-commerce.css')}}">
|
||||
|
||||
<!-- KMB Custom css -->
|
||||
|
|
@ -28,6 +28,14 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<!-- Modal -->
|
||||
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content" style="padding: 50px 70px">
|
||||
@include('Bilettm.Public.AddEventForm')
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<main>
|
||||
@include('Bilettm.Partials.PublicHeader')
|
||||
@yield('content')
|
||||
|
|
@ -44,7 +52,6 @@
|
|||
@yield('after_scripts')
|
||||
|
||||
@stack('after_scripts')
|
||||
{!!HTML::script(config('attendize.cdn_url_static_assets').'/assets/javascript/frontend.js')!!}
|
||||
<script>
|
||||
$('document').ready(function(){
|
||||
$('#top-header-submit').click(function(){
|
||||
|
|
|
|||
|
|
@ -0,0 +1,36 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
@section('content')
|
||||
{{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('category',$category)}}
|
||||
<section class="movie-items-group">
|
||||
<div class="container">
|
||||
<ul class="nav u-nav-v1-1 g-mb-20" role="tablist" data-target="nav-1-1-default-hor-left" data-tabs-mobile-type="slide-up-down" data-btn-classes="btn btn-md btn-block rounded-0 u-btn-outline-lightgray g-mb-20">
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" data-toggle="tab" href="" role="tab">Популярное</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" data-toggle="tab" href="" role="tab">Новые</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">Сегодня <i class="fa fa-caret-down"></i></a>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">SLink 1</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">SLink 2</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">SLink 3</a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" role="tab">Дата <i class="fa fa-caret-down"></i></a>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">DLink 1</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">DLink 2</a>
|
||||
<a class="dropdown-item nav-link" data-toggle="tab" href="" role="tab">DLink 3</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- Nav tabs -->
|
||||
@stack('inner_content')
|
||||
<!-- End Nav tabs -->
|
||||
</div>
|
||||
</se ction>
|
||||
@endsection
|
||||
|
|
@ -1,13 +1,12 @@
|
|||
@if(!empty($event))
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset($event->images->first()->image_path ?? '#')}}">
|
||||
<img class="d-flex align-items-end" src="{{asset($event->image_url ?? '#')}}">
|
||||
</div>
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/overlay/1.svg')}})">
|
||||
<div class="overlay-details">
|
||||
<h2 class="title">{{$event->title}}</h2>
|
||||
<h2 class="title" style="text-transform: capitalize !important;">{{$event->title}}</h2>
|
||||
<h4 class="date">В кино с {{$event->start_date->format('d M')}} </h4>
|
||||
<p class="description">{{$event->description}}</p>
|
||||
<p class="description">{!! Markdown::parse($event->description) !!}</p>
|
||||
<div class="overlay-details-bottom-part">
|
||||
<a href="" class="share">
|
||||
<svg class="Shape" viewBox="0 0 30.504 33.893" fill="#ffffff" width="35px">
|
||||
|
|
@ -20,13 +19,14 @@
|
|||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
{{$event->views_count}} Views</a>
|
||||
{{$event->views}} Views</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="{{$event->event_url}}" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена ot: {{$event->starting_ticket_price}} TMT</span>
|
||||
@if(!empty($event->starting_ticket))
|
||||
<span class="cost">Цена ot: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
@endif
|
||||
|
|
@ -8,17 +8,19 @@
|
|||
<div class="date">
|
||||
<div class="day">
|
||||
<h4>{{$event->start_date->format('d.m.Y')}}</h4>
|
||||
<h6>{{$event->end_date->format('d.m.Y')}}</h6>
|
||||
<h6>{{$event->getSeansCount()}}</h6>
|
||||
</div>
|
||||
</div>
|
||||
<h2 class="film_name"><a href="{{$event->event_url}}">{{$event->title}}</a></h2>
|
||||
<div id="desc">
|
||||
{!! Markdown::parse($event->description) !!}
|
||||
</div>
|
||||
@if($event->starting_ticket_price)
|
||||
<div class="buy_and_salary">
|
||||
<span class="cost">Цена ot: {{$event->starting_ticket_price}} TMT</span>
|
||||
<a class="btn btn-danger buy_button" href="{{$event->event_url}}">Купить</a>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
@if(!empty($cinema))
|
||||
<section id="kinoteator" class="kinoteator-section container">
|
||||
<div class="tab-header d-flex justify-content-between col-12 px-0">
|
||||
<h2 class="">Кинотеатры</h2>
|
||||
<h2 class="">{{$cinema->title}}</h2>
|
||||
<div style="height: 5px; position: absolute; bottom: 0; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<a class="" href="{{route('showCategoryEventsPage')}}">Посмотреть все</a>
|
||||
<a class="" href="{{$cinema->url}}">Посмотреть все</a>
|
||||
</div>
|
||||
<div class="tab-ozi col-12 px-0">
|
||||
|
||||
|
|
@ -10,11 +11,11 @@
|
|||
<div class="slider-slider">
|
||||
<div class="row w-100 m-auto">
|
||||
<div class="col-6 single-item-6 big-cinema-item-col6">
|
||||
@include('Bilettm.Partials.CinemaItem',['event'=>$cinema->shift(1),'size'=>'big'])
|
||||
@include('Bilettm.Partials.CinemaItem',['event'=>$cinema->events->first(),'size'=>'big'])
|
||||
</div>
|
||||
<div class="col-6" style="padding: 0">
|
||||
<div class="row">
|
||||
@foreach($cinema->slice(0,4) as $cinemaEvent)
|
||||
@foreach($cinema->events->slice(1,4) as $cinemaEvent)
|
||||
<div class="col-6 single-item-6">
|
||||
@include('Bilettm.Partials.CinemaItem',['event'=>$cinemaEvent])
|
||||
|
||||
|
|
@ -28,7 +29,7 @@
|
|||
@if($cinema->count()>4)
|
||||
<div class="slider-slider">
|
||||
<div class="row">
|
||||
@foreach($cinema->slice(4) as $cinemaEvent)
|
||||
@foreach($cinema->events->slice(5) as $cinemaEvent)
|
||||
<div class="col-6 single-item-6">
|
||||
@include('Bilettm.Partials.CinemaItem',['event'=>$cinemaEvent])
|
||||
</div>
|
||||
|
|
@ -39,4 +40,5 @@
|
|||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
@endif
|
||||
|
|
@ -1,21 +1,22 @@
|
|||
@if(!empty($musical))
|
||||
<section id="konserty" class="container" style="background-image: url({{asset('assets/images/bg/konserty.jpg')}}); background-repeat: no-repeat; background-size: 100%; padding: 100px 0;">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2 class="">Концерты</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 10px; width: 100px; background-color: #ffffff"></div>
|
||||
<a class="" href="{{route('showCategoryEventsPage')}}">Посмотреть все</a>
|
||||
<h2 class="">{{$musical->title}}</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 0px; width: 100px; background-color: #ffffff"></div>
|
||||
<a class="" href="{{$musical->url}}">Посмотреть все</a>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
<!-- End Nav tabs -->
|
||||
<div class="owl-carousel container row" id="konserty-tab1" style="padding: 0 !important; margin: 0">
|
||||
|
||||
<div class="slider-slider row">
|
||||
@foreach($musical->slice(0,4) as $event)
|
||||
@foreach($musical->events->slice(0,4) as $event)
|
||||
@include('Bilettm.Partials.MusicalItem',['event'=>$event])
|
||||
@endforeach
|
||||
</div>
|
||||
@if($musical->count()>4)
|
||||
<div class="slider-slider row">
|
||||
@foreach($musical->slice(4) as $event)
|
||||
@foreach($musical->events->slice(4) as $event)
|
||||
@include('Bilettm.Partials.MusicalItem',['event'=>$event])
|
||||
@endforeach
|
||||
</div>
|
||||
|
|
@ -23,3 +24,4 @@
|
|||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
|
|
@ -1,26 +1,33 @@
|
|||
@if(!empty($theatre))
|
||||
<section id="teator " class="container teator">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2 class="">Театоры</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<a class="teatr-show-more m-0" href="{{route('showCategoryEventsPage')}}">Посмотреть все</a>
|
||||
<h2 class="font-weight-bold">{{$theatre->title}}</h2>
|
||||
<div style="height: 5px; position: absolute; bottom: 10px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<a class="teatr-show-more m-0" href="{{$theatre->url}}">Посмотреть все</a>
|
||||
</div>
|
||||
<div class="tab-ozi col-12" style="margin-top: 20px">
|
||||
<div class="tab-ozi col-12 pt-4">
|
||||
<div class="kinoteator-tab1-wrapper">
|
||||
|
||||
<div class="row" style="width: 100%; margin: auto">
|
||||
<div class="col-md-10" style="padding: 0 7px">
|
||||
<div id="carousel-09-1" class="js-carousel text-center g-font-size-0 g-mb-20 g-mb-0--sm" data-infinite="true" data-vertical="true" data-arrows-classes="u-arrow-v1 g-absolute-centered--x g-width-35 g-height-35 g-font-size-18 g-color-gray g-bg-white" data-arrow-left-classes="fa fa-angle-up g-top-0" data-arrow-right-classes="fa fa-angle-down g-bottom-0" data-nav-for="#carousel-09-2">
|
||||
@foreach($theatre as $event)
|
||||
<div class="row w-100 m-auto">
|
||||
<div class="col-md-10 pl-0">
|
||||
<div id="carousel-09-1" class="js-carousel text-center g-font-size-0 g-mb-20 g-mb-0--sm"
|
||||
data-infinite="true" data-vertical="true"
|
||||
data-arrows-classes="u-arrow-v1 g-absolute-centered--x g-width-35 g-height-35 g-font-size-18 g-color-gray g-bg-white"
|
||||
data-arrow-left-classes="fa fa-angle-up g-top-0" data-arrow-right-classes="fa fa-angle-down g-bottom-0"
|
||||
data-nav-for="#carousel-09-2">
|
||||
@foreach($theatre->events as $event)
|
||||
@include('Bilettm.Partials.TheaterItem',['event'=>$event])
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
<div id="carousel-09-2" class="js-carousel text-center u-carousel-v3 g-mx-minus-10 g-mx-minus-0--sm g-my-minus-5--sm" data-infinite="true" data-center-mode="true" data-vertical="true" data-slides-show="4" data-is-thumbs="true" data-nav-for="#carousel-09-1">
|
||||
@foreach($theatre as $event)
|
||||
<div id="carousel-09-2" class="js-carousel text-center u-carousel-v3 g-mx-minus-10 g-mx-minus-0--sm g-my-minus-5--sm"
|
||||
data-infinite="true" data-center-mode="true" data-vertical="true" data-slides-show="4"
|
||||
data-is-thumbs="true" data-nav-for="#carousel-09-1">
|
||||
@foreach($theatre->events as $event)
|
||||
<div class="js-slide g-px-10 g-px-0--sm g-py-5--sm">
|
||||
<img class="img-fluid w-100" src="{{$event->images->first()->image_path ?? '#'}}">
|
||||
<img class="img-fluid w-100" src="{{$event->image_url ?? '#'}}">
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
|
@ -28,4 +35,5 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
@endif
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
<div class="col-3">
|
||||
<article class="u-block-hover">
|
||||
<div class="g-bg-cover">
|
||||
<img class="d-flex align-items-end" src="{{asset($event->images->first()->image_path ?? '#')}}" style="border-radius: 5px">
|
||||
<img class="d-flex align-items-end" src="{{asset($event->image_url ?? '#')}}" style="border-radius: 5px">
|
||||
</div>
|
||||
<div class="u-block-hover__additional--partially-slide-up h-100 text-center g-z-index-1 mt-auto" style="background-image: url({{asset('assets/images/bg/konserty-item.png')}})">
|
||||
<div class="overlay-details smalll">
|
||||
|
|
@ -19,11 +19,13 @@
|
|||
<path id="Shape_A26_Path_4" d="M 17 5.624999523162842 C 15.7344446182251 2.377499580383301 12.18900012969971 0 8.5 0 C 3.696555614471436 0 0 3.622499465942383 0 8.437499046325684 C 0 15.05437183380127 7.164555549621582 20.1712474822998 17 30 C 26.8354434967041 20.1712474822998 34 15.05437183380127 34 8.437499046325684 C 34 3.622499465942383 30.30344581604004 0 25.5 0 C 21.80722236633301 0 18.26555633544922 2.377499580383301 17 5.624999523162842 Z">
|
||||
</path>
|
||||
</svg>
|
||||
{{$event->views_count}} Views</a>
|
||||
{{$event->views}} Views</a>
|
||||
<div class="buy-btn-wrap">
|
||||
<a href="{{$event->event_url}}" class="buy-btn">Купить билет</a>
|
||||
</div>
|
||||
<span class="cost">Цена ot: {{$event->starting_ticket_price}} TMT</span>
|
||||
@if(!empty($event->starting_ticket))
|
||||
<span class="cost">Цена ot: {{$event->starting_ticket->first()->price ?? 'n/a'}} TMT</span>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@
|
|||
<div class="row justify-content-start g-mb-30 g-mb-0--md">
|
||||
<div class="col-12 footer-header mb-5" style="padding: 0 20%;">
|
||||
<h2>Хотите всегда быть в курсе актуальных событий?</h2>
|
||||
<form action="{{route('subscription')}}" method="POST" class="row">
|
||||
<form action="{{route('subscription')}}" method="POST" class="row ajax">
|
||||
@csrf
|
||||
<div class="col-9 form-group">
|
||||
<input type="email" class="form-control" name='email' placeholder="Введите ваш e-mail">
|
||||
</div>
|
||||
|
|
@ -38,25 +39,25 @@
|
|||
</div>
|
||||
<div class="col-3 col-3-with-text">
|
||||
<ul>
|
||||
<li><a href="">ЛИЧНЫЙ КАБИНЕТ</a></li>
|
||||
<li><a href="">ЗНАКОМСТВО С BILETTM.COM</a></li>
|
||||
<li><a href="">ВОПРОСЫ И ОТВЕТЫ</a></li>
|
||||
<li><a href="">БИЛЕТНЫЕ ОФИСЫ</a></li>
|
||||
<li><a href="#">ЛИЧНЫЙ КАБИНЕТ</a></li>
|
||||
<li><a href="#">ЗНАКОМСТВО С BILETTM.COM</a></li>
|
||||
<li><a href="#">ВОПРОСЫ И ОТВЕТЫ</a></li>
|
||||
<li><a href="#">БИЛЕТНЫЕ ОФИСЫ</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-3 col-3-with-text">
|
||||
<ul>
|
||||
<li><a href="">РАССЫЛКА</a></li>
|
||||
<li><a href="">КОЛЛЕКТИВНЫЕ ЗАКАЗЫ</a></li>
|
||||
<li><a href="">ОРГАНИЗАТОРАМ</a></li>
|
||||
<li><a href="">КОНЦЕРТНЫМ ПЛОЩАДКАМ</a></li>
|
||||
<li><a href="#">РАССЫЛКА</a></li>
|
||||
<li><a href="#">КОЛЛЕКТИВНЫЕ ЗАКАЗЫ</a></li>
|
||||
<li><a href="#">ОРГАНИЗАТОРАМ</a></li>
|
||||
<li><a href="#">КОНЦЕРТНЫМ ПЛОЩАДКАМ</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-3 col-3-with-text">
|
||||
<ul>
|
||||
<li><a href="">ПАРТНЁРАМ</a></li>
|
||||
<li><a href="">ЛОГОТИП ДЛЯ АФИШ И СМИ</a></li>
|
||||
<li><a href="">Добавить событие</a></li>
|
||||
<li><a href="#">ПАРТНЁРАМ</a></li>
|
||||
<li><a href="#">ЛОГОТИП ДЛЯ АФИШ И СМИ</a></li>
|
||||
<li><a style="color: #ffffff; cursor: pointer" data-toggle="modal" data-target="#exampleModalCenter">Добавить событие</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<!-- Logo -->
|
||||
<div class="navbar-brand bilettm" style="width: 30%; margin-right: 0">
|
||||
<a href="/"><img src="{{asset('assets/images/logo/bilet-logo.svg')}}"></a>
|
||||
<a href="{{route('add_event')}}" class="add-event">+ добавить событие</a>
|
||||
<a data-toggle="modal" data-target="#exampleModalCenter" class="add-event" style="cursor: pointer">+ добавить событие</a>
|
||||
</div>
|
||||
<!-- End Logo -->
|
||||
|
||||
|
|
@ -39,8 +39,6 @@
|
|||
</path>
|
||||
</svg></a></li>
|
||||
@endforeach
|
||||
|
||||
|
||||
{{--<li class="nav-item hs-has-sub-menu g-mx-10--lg g-mx-15--xl dropdown" id="center-menu-dropdown">--}}
|
||||
{{--<a id="nav-link--home" class="nav-link g-px-5 g-py-20 dropdown-toggle" data-toggle="dropdown"><svg class="Polygon_3" fill="#ffffff" width="7px" viewBox="0 0 8 8">--}}
|
||||
{{--<path id="Polygon_3" d="M 3.292892932891846 0.7071067690849304 C 3.683417320251465 0.3165824711322784 4.316582202911377 0.3165824711322784 4.707106590270996 0.7071067690849304 L 7.292893409729004 3.292893171310425 C 7.683417320251465 3.683417320251465 7.683417320251465 4.316582679748535 7.292893409729004 4.707107067108154 L 4.707106590270996 7.292893409729004 C 4.316582202911377 7.683417320251465 3.683417081832886 7.683417320251465 3.292892932891846 7.292893409729004 L 0.7071067094802856 4.707106590270996 C 0.3165824413299561 4.316582202911377 0.3165824711322784 3.683417320251465 0.7071067690849304 3.292892932891846 Z">--}}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
<div class="js-slide">
|
||||
<a class="d-block" href="{{$event->event_url}}">
|
||||
<img class="img-fluid w-100" src="{{asset($event->images->first()->image_path ?? '#')}}">
|
||||
<img class="img-fluid w-100" src="{{asset($event->image_url ?? '#')}}">
|
||||
<div class="teator-overlay">
|
||||
<div class="texts-wrapper" style="color: #ffffff">
|
||||
<span class="">{{$event->start_date->format('H:s, d.m.Y')}}</span>
|
||||
<h2>«{{$event->title}}»</h2>
|
||||
<h2>{{$event->title}}</h2>
|
||||
<h5>{{$event->venue_name}}</h5>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,14 +1,35 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
@section('content')
|
||||
{{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('add_event')}}
|
||||
<section>
|
||||
<form action="{{route('add_event')}}" method="POST">
|
||||
@csrf
|
||||
<input type="text" name="name" value="{{old('name')}}" placeholder="Name">
|
||||
<input type="email" name="email" value="{{old('email')}}" placeholder="Email">
|
||||
<input type="text" name="phone" value="{{old('phone')}}" placeholder="Phone">
|
||||
<input type="text" name="details" value="{{old('details')}}" placeholder="Details">
|
||||
<button type="submit" name="send" class="btn btn-danger"> Send</button>
|
||||
<div class="title-and-btn">
|
||||
<div class="tab-header d-flex justify-content-between col-12 px-0 m-auto" style="width: calc(100% - 10px)">
|
||||
<h4 class="font-weight-bold">Добавить событие</h4>
|
||||
<div style="height: 5px; position: absolute; bottom: 15px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
<div class="">
|
||||
<a class="modal-send" style="float: right" href="">Send</a>
|
||||
<span style="float: right; font-size: 12px" class="text-right font-weight-bold">*Required field(s)</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="">
|
||||
<form action="" class="row w-100 m-auto">
|
||||
<div class="form-group col-6">
|
||||
<label for="">First Name*</label>
|
||||
<input type="text" placeholder="Orazgeldi" class="form-control">
|
||||
</div>
|
||||
<div class="form-group col-6">
|
||||
<label for="">Phone*</label>
|
||||
<input type="text" placeholder="+99362222222" class="form-control">
|
||||
</div>
|
||||
<div class="form-group col-6">
|
||||
<label for="">Venue*</label>
|
||||
<input type="text" placeholder="Konsertny zal Turkmenistan" class="form-control">
|
||||
</div>
|
||||
<div class="form-group col-6">
|
||||
<label for="">Email*</label>
|
||||
<input type="email" placeholder="Sizin elektron poctanyz" class="form-control">
|
||||
</div>
|
||||
<div class="form-group col-12" style="padding: 0 5px">
|
||||
<label for="">Message*</label>
|
||||
<textarea name="" id="" cols="30" rows="5" placeholder="Message" class="form-control"></textarea>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
@endsection
|
||||
<p style="padding: 0 5px; color: #000000; margin: auto; font-size: 13px; font-weight: bold">*Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam ea exercitationem rerum tempore voluptate. Cumque distinctio est in, itaque laboriosam magni natus nesciunt nihil officia placeat quia reprehenderit sunt voluptates.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -1,85 +0,0 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
@section('after_styles')
|
||||
<link rel="stylesheet" href="{{ asset('vendor/jquery-ui/themes/base/jquery-ui.min.css') }}">
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
{{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('category',$category)}}
|
||||
<!-- Films Opisanie Buttons section -->
|
||||
<section id='cat_and_buttons'>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-lg-4 col-4">
|
||||
|
||||
<select id='vybor_select' >
|
||||
<option class="cat_op" >На этой недели</option>
|
||||
<option class="cat_op">Исполнители</option>
|
||||
<option class="cat_op">Мероприятие</option>
|
||||
<option class="cat_op">Концерты</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-8 col-lg-8 col-8">
|
||||
<div id='cat_buts'>
|
||||
@foreach($navigation as $nav)
|
||||
<a class=" btn btn-danger active_cat_but cat_but" href="{{$nav->url}}">{{$nav->title}}</a>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section id='opisanie_section'>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-9">
|
||||
@foreach($events as $event)
|
||||
@include('Bilettm.Partials.EventItem')
|
||||
@endforeach
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<div id="datepickerInlineFrom" class="u-datepicker-v1 g-brd-gray-light-v2 g-mb-40 g-mb-0--xl" data-range="true" data-to="datepickerInlineTo"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container film">
|
||||
<div class="row">
|
||||
<div class="col-md-9 col-lg-9 col-sm-9 col-9">
|
||||
<div class="pagination_blk">
|
||||
<span>Видно на странице - 5/48</span>
|
||||
<div class="arrows_block">
|
||||
<a class='arrows' id='left_arrow' href="#"><img src="{{asset('assets/images/icons/left.png')}}"></a>
|
||||
<a class='arrows' id='right_arrow' href="#"><img src="{{asset('assets/images/icons/right.png')}}"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
||||
|
||||
@section('after_scripts')
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/widget.js') }}"></script>
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/version.js') }}"></script>
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/keycode.js') }}"></script>
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/position.js') }}"></script>
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/unique-id.js') }}"></script>
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/safe-active-element.js') }}"></script>
|
||||
|
||||
<!-- jQuery UI Helpers -->
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/widgets/menu.js') }}"></script>
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/widgets/mouse.js') }}"></script>
|
||||
|
||||
<!-- jQuery UI Widgets -->
|
||||
<script src="{{ asset('vendor/jquery-ui/ui/widgets/datepicker.js') }}"></script>
|
||||
|
||||
<!-- JS Unify -->
|
||||
<script src="{{ asset('assets/javascript/components/hs.datepicker.js') }}"></script>
|
||||
|
||||
<!-- JS Plugins Init. -->
|
||||
<script >
|
||||
$(document).on('ready', function () {
|
||||
// initialization of forms
|
||||
$.HSCore.components.HSDatepicker.init('#datepickerDefault, #datepickerInline, #datepickerInlineFrom, #datepickerFrom');
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
|
|
@ -6,15 +6,13 @@
|
|||
<link rel="stylesheet" href="{{asset('vendor/jquery-ui/themes/base/jquery-ui.min.css')}}">
|
||||
@endsection
|
||||
@section('content')
|
||||
@if($sliders->count()>0)
|
||||
|
||||
@include('Bilettm.Partials.HomeSlider')
|
||||
@endif
|
||||
@if($cinema->count()>0)
|
||||
|
||||
@include('Bilettm.Partials.HomeCinema')
|
||||
@endif
|
||||
@if($musical->count()>0)
|
||||
|
||||
@include('Bilettm.Partials.HomeMusical')
|
||||
@endif
|
||||
|
||||
<section id="first-add-wrapper" style="margin: 100px 0;">
|
||||
<div class="container">
|
||||
<div class="row" style="padding: 0 20px;">
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<!-- Nav tabs -->
|
||||
<ul class="nav u-nav-v1-1 g-mb-20" role="tablist" data-target="nav-1-1-default-hor-left" data-tabs-mobile-type="slide-up-down" data-btn-classes="btn btn-md btn-block rounded-0 u-btn-outline-lightgray g-mb-20">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link active" data-toggle="tab" role="tab">Результатов поиска: {{$events->count()}}</a>
|
||||
<a class="nav-link active" data-toggle="tab" role="tab">Результатов поиска: {{$events->count()}}/{{$events->total()}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- End Nav tabs -->
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
@foreach($events as $event)
|
||||
@include('Bilettm.Partials.EventItem')
|
||||
@endforeach
|
||||
<div class="col-12 no-more-results">Больше результатов нет</div>
|
||||
{{$events->links('vendor.pagination.simple-bootstrap-4')}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,53 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
@section('content')
|
||||
@include('Bilettm.ViewEvent.Partials.HeaderSection')
|
||||
|
||||
@include('Bilettm.ViewEvent.Partials.CreateOrderSection')
|
||||
|
||||
@include('Bilettm.ViewEvent.Partials.FooterSection')
|
||||
@endsection
|
||||
@section('after_scripts')
|
||||
@include("Shared.Partials.LangScript")
|
||||
{!!HTML::script(config('attendize.cdn_url_static_assets').'/assets/javascript/frontend.js')!!}
|
||||
<script>
|
||||
var OrderExpires = {{strtotime($expires)}};
|
||||
$('#mirror_buyer_info').on('click', function(e) {
|
||||
$('.ticket_holder_first_name').val($('#order_first_name').val());
|
||||
$('.ticket_holder_last_name').val($('#order_last_name').val());
|
||||
$('.ticket_holder_email').val($('#order_email').val());
|
||||
});
|
||||
function setCountdown($element, seconds) {
|
||||
|
||||
var endTime, mins, msLeft, time, twoMinWarningShown = false;
|
||||
|
||||
function twoDigits(n) {
|
||||
return (n <= 9 ? "0" + n : n);
|
||||
}
|
||||
|
||||
function updateTimer() {
|
||||
msLeft = endTime - (+new Date);
|
||||
if (msLeft < 1000) {
|
||||
alert(lang("time_run_out"));
|
||||
location.reload();
|
||||
} else {
|
||||
|
||||
if (msLeft < 120000 && !twoMinWarningShown) {
|
||||
showMessage(lang("just_2_minutes"));
|
||||
twoMinWarningShown = true;
|
||||
}
|
||||
|
||||
time = new Date(msLeft);
|
||||
mins = time.getUTCMinutes();
|
||||
$element.html('<b>' + mins + ':' + twoDigits(time.getUTCSeconds()) + '</b>');
|
||||
setTimeout(updateTimer, time.getUTCMilliseconds() + 500);
|
||||
}
|
||||
}
|
||||
|
||||
endTime = (+new Date) + 1000 * seconds + 500;
|
||||
updateTimer();
|
||||
}
|
||||
</script>
|
||||
@if(isset($secondsToExpire))
|
||||
<script>if($('#countdown')) {setCountdown($('#countdown'), {{$secondsToExpire}});}</script>
|
||||
@endif
|
||||
@endsection
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
@section('content')
|
||||
{{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('home')}}
|
||||
{{\DaveJamesMiller\Breadcrumbs\Facades\Breadcrumbs::render('event',$event)}}
|
||||
<section style="margin-top: 30px; margin-bottom: 100px">
|
||||
<div class="container">
|
||||
<div class="row m-0">
|
||||
|
|
@ -56,8 +56,4 @@
|
|||
@section('after_scripts')
|
||||
@include("Shared.Partials.LangScript")
|
||||
{!!HTML::script(config('attendize.cdn_url_static_assets').'/assets/javascript/frontend.js')!!}
|
||||
|
||||
@if(isset($secondsToExpire))
|
||||
<script>if($('#countdown')) {setCountdown($('#countdown'), {{$secondsToExpire}});}</script>
|
||||
@endif
|
||||
@endsection
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
@section('content')
|
||||
@include('Bilettm.ViewEvent.Partials.CheckoutHeader')
|
||||
|
||||
@include('Bilettm.ViewEvent.Partials.CreateOrderSection')
|
||||
<script>var OrderExpires = {{strtotime($expires)}};</script>
|
||||
@include('Bilettm.ViewEvent.Partials.CheckoutFooter')
|
||||
@endsection
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('Public.ViewEvent.Partials.EventHeaderSection')
|
||||
@include('Public.ViewEvent.Partials.EventShareSection')
|
||||
@include('Public.ViewEvent.Partials.EventViewOrderSection')
|
||||
@include('Public.ViewEvent.Partials.EventFooterSection')
|
||||
|
||||
@stop
|
||||
|
|
@ -1,77 +1,26 @@
|
|||
<section id='order_form' class="container">
|
||||
<div class="row">
|
||||
<h1 class="section_head">
|
||||
<div class="row justify-content-center bg-danger my-3">
|
||||
<h1 class="section_head text-light">
|
||||
@lang("Public_ViewEvent.order_details")
|
||||
</h1>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center">
|
||||
@lang("Public_ViewEvent.below_order_details_header")
|
||||
</div>
|
||||
<div class="col-md-4 col-md-push-8">
|
||||
<div class="panel">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">
|
||||
<i class="ico-cart mr5"></i>
|
||||
@lang("Public_ViewEvent.order_summary")
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<div class="panel-body pt0">
|
||||
<table class="table mb0 table-condensed">
|
||||
@foreach($tickets as $ticket)
|
||||
<tr>
|
||||
<td class="pl0">{{{$ticket['ticket']['title']}}} X <b>{{$ticket['qty']}}</b></td>
|
||||
<td style="text-align: right;">
|
||||
@if((int)ceil($ticket['full_price']) === 0)
|
||||
@lang("Public_ViewEvent.free")
|
||||
@else
|
||||
{{ money($ticket['full_price'], $event->currency) }}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
</div>
|
||||
@if($order_total > 0)
|
||||
<div class="panel-footer">
|
||||
<h5>
|
||||
@lang("Public_ViewEvent.total"): <span style="float: right;"><b>{{ $orderService->getOrderTotalWithBookingFee(true) }}</b></span>
|
||||
</h5>
|
||||
@if($event->organiser->charge_tax)
|
||||
<h5>
|
||||
{{ $event->organiser->tax_name }} ({{ $event->organiser->tax_value }}%):
|
||||
<span style="float: right;"><b>{{ $orderService->getTaxAmount(true) }}</b></span>
|
||||
</h5>
|
||||
<h5>
|
||||
<strong>@lang("Public_ViewEvent.grand_total")</strong>
|
||||
<span style="float: right;"><b>{{ $orderService->getGrandTotal(true) }}</b></span>
|
||||
</h5>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
<div class="help-block">
|
||||
{!! @trans("Public_ViewEvent.time", ["time"=>"<span id='countdown'></span>"]) !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-8 col-md-pull-4">
|
||||
<div class="event_order_form">
|
||||
<div class="col-md-8">
|
||||
<div class="event_order_form card p-3">
|
||||
{!! Form::open(['url' => route('postCreateOrder', ['event_id' => $event->id]), 'class' => ($order_requires_payment && @$payment_gateway->is_on_site) ? 'ajax payment-form' : 'ajax', 'data-stripe-pub-key' => isset($account_payment_gateway->config['publishableKey']) ? $account_payment_gateway->config['publishableKey'] : '']) !!}
|
||||
|
||||
{!! Form::hidden('event_id', $event->id) !!}
|
||||
|
||||
<h3> @lang("Public_ViewEvent.your_information")</h3>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<div class="form-row">
|
||||
<div class="col-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label("order_first_name", trans("Public_ViewEvent.first_name")) !!}
|
||||
{!! Form::text("order_first_name", null, ['required' => 'required', 'class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<div class="col-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label("order_last_name", trans("Public_ViewEvent.last_name")) !!}
|
||||
{!! Form::text("order_last_name", null, ['required' => 'required', 'class' => 'form-control']) !!}
|
||||
|
|
@ -79,7 +28,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
{!! Form::label("order_email", trans("Public_ViewEvent.email")) !!}
|
||||
|
|
@ -87,80 +36,13 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{--<div class="row"><div class="col-md-12"> </div></div>--}}
|
||||
{{--<div class="row">--}}
|
||||
{{--<div class="col-md-12">--}}
|
||||
{{--<div class="form-group">--}}
|
||||
{{--<div class="custom-checkbox">--}}
|
||||
{{--{!! Form::checkbox('is_business', 1, null, ['data-toggle' => 'toggle', 'id' => 'is_business']) !!}--}}
|
||||
{{--{!! Form::label('is_business', trans("Public_ViewEvent.is_business"), ['class' => 'control-label']) !!}--}}
|
||||
{{--</div>--}}
|
||||
{{--</div>--}}
|
||||
{{--</div>--}}
|
||||
{{--</div>--}}
|
||||
{{--<div class="row"><div class="col-md-12"> </div></div>--}}
|
||||
<div class="row hidden" id="business_details">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label("business_name", trans("Public_ViewEvent.business_name")) !!}
|
||||
{!! Form::text("business_name", null, ['class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label("business_tax_number", trans("Public_ViewEvent.business_tax_number")) !!}
|
||||
{!! Form::text("business_tax_number", null, ['class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label("business_address_line1", trans("Public_ViewEvent.business_address_line1")) !!}
|
||||
{!! Form::text("business_address_line1", null, ['class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label("business_address_line2", trans("Public_ViewEvent.business_address_line2")) !!}
|
||||
{!! Form::text("business_address_line2", null, ['class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-4">
|
||||
<div class="form-group">
|
||||
{!! Form::label("business_address_state", trans("Public_ViewEvent.business_address_state_province")) !!}
|
||||
{!! Form::text("business_address_state", null, ['class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<div class="form-group">
|
||||
{!! Form::label("business_address_city", trans("Public_ViewEvent.business_address_city")) !!}
|
||||
{!! Form::text("business_address_city", null, ['class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-4">
|
||||
<div class="form-group">
|
||||
{!! Form::label("business_address_code", trans("Public_ViewEvent.business_address_code")) !!}
|
||||
{!! Form::text("business_address_code", null, ['class' => 'form-control']) !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row"><div class="col-md-12"> </div></div>
|
||||
<div class="p20 pl0">
|
||||
<a href="javascript:void(0);" class="btn btn-primary btn-xs" id="mirror_buyer_info">
|
||||
<a href="javascript:void(0);" class="btn btn-primary btn-sm" id="mirror_buyer_info">
|
||||
@lang("Public_ViewEvent.copy_buyer")
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="row mt-3">
|
||||
<div class="col-md-12">
|
||||
<div class="ticket_holders_details" >
|
||||
<h3>@lang("Public_ViewEvent.ticket_holder_information")</h3>
|
||||
|
|
@ -169,14 +51,14 @@
|
|||
?>
|
||||
@foreach($tickets as $ticket)
|
||||
@for($i=0; $i<=$ticket['qty']-1; $i++)
|
||||
<div class="panel panel-primary">
|
||||
<div class="card card-info">
|
||||
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">
|
||||
<b>{{$ticket['ticket']['title']}}</b>: @lang("Public_ViewEvent.ticket_holder_n", ["n"=>$i+1])
|
||||
</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
|
|
@ -295,13 +177,56 @@
|
|||
@endif
|
||||
|
||||
{!! Form::hidden('is_embedded', $is_embedded) !!}
|
||||
{!! Form::submit(trans("Public_ViewEvent.checkout_submit"), ['class' => 'btn btn-lg btn-success card-submit', 'style' => 'width:100%;']) !!}
|
||||
|
||||
{!! Form::submit(trans("Public_ViewEvent.checkout_submit"), ['class' => 'btn btn-lg btn-danger card-submit']) !!}
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="card">
|
||||
|
||||
<div class="card-body pt0">
|
||||
<h3 class="card-title">
|
||||
<i class="ico-cart mr5"></i>
|
||||
@lang("Public_ViewEvent.order_summary")
|
||||
</h3>
|
||||
<table class="table mb0 table-condensed">
|
||||
@foreach($tickets as $ticket)
|
||||
<tr>
|
||||
<td class="pl0">{{{$ticket['ticket']['title']}}} X <b>{{$ticket['qty']}}</b></td>
|
||||
<td style="text-align: right;">
|
||||
@if((int)ceil($ticket['full_price']) === 0)
|
||||
@lang("Public_ViewEvent.free")
|
||||
@else
|
||||
{{ money($ticket['full_price'], $event->currency) }}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
</div>
|
||||
@if($order_total > 0)
|
||||
<div class="card-footer">
|
||||
<h5>
|
||||
@lang("Public_ViewEvent.total"): <span style="float: right;"><b>{{ $orderService->getOrderTotalWithBookingFee(true) }}</b></span>
|
||||
</h5>
|
||||
@if($event->organiser->charge_tax)
|
||||
<h5>
|
||||
{{ $event->organiser->tax_name }} ({{ $event->organiser->tax_value }}%):
|
||||
<span style="float: right;"><b>{{ $orderService->getTaxAmount(true) }}</b></span>
|
||||
</h5>
|
||||
<h5>
|
||||
<strong>@lang("Public_ViewEvent.grand_total")</strong>
|
||||
<span style="float: right;"><b>{{ $orderService->getGrandTotal(true) }}</b></span>
|
||||
</h5>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
|
||||
</div>
|
||||
<div class="help-block">
|
||||
{!! @trans("Public_ViewEvent.time", ["time"=>"<span id='countdown'></span>"]) !!}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<img src="https://cdn.attendize.com/lg.png" />
|
||||
</section>
|
||||
@if(session()->get('message'))
|
||||
<script>showMessage('{{session()->get('message')}}');</script>
|
||||
@endif
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<section id="footer" class="container-fluid">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@if(Utils::userOwns($event))
|
||||
•
|
||||
<a class="adminLink " href="{{route('showEventDashboard' , ['event_id' => $event->id])}}">@lang("Public_ViewEvent.event_dashboard")</a>
|
||||
•
|
||||
<a class="adminLink "
|
||||
href="{{route('showOrganiserDashboard' , ['organiser_id' => $event->organiser->id])}}">@lang("Public_ViewEvent.organiser_dashboard")</a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div onclick="window.location='{{$event->event_url}}#organiser'" class="event_organizer">
|
||||
<div onclick="window.location='{{$event->event_url}}#organiser'" class="event_organizer text-center p-3">
|
||||
<b>{{$event->organiser->name}}</b> @lang("Public_ViewEvent.presents")
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
</section>
|
||||
<section id="intro" class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-12 text-center">
|
||||
<h1 property="name">{{$event->title}}</h1>
|
||||
<div class="event_venue">
|
||||
<span property="startDate" content="{{ $event->start_date->toIso8601String() }}">
|
||||
|
|
@ -0,0 +1,243 @@
|
|||
<section id="order_form" class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12 order_header">
|
||||
<span class="massive-icon">
|
||||
<i class="ico ico-checkmark-circle"></i>
|
||||
</span>
|
||||
<h1>{{ @trans("Public_ViewEvent.thank_you_for_your_order") }}</h1>
|
||||
<h2>
|
||||
{{ @trans("Public_ViewEvent.your") }}
|
||||
<a class="ticket_download_link"
|
||||
href="{{ route('showOrderTickets', ['order_reference' => $order->order_reference] ).'?download=1' }}">
|
||||
{{ @trans("Public_ViewEvent.tickets") }}</a> {{ @trans("Public_ViewEvent.confirmation_email") }}
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="content event_view_order">
|
||||
|
||||
@if($event->post_order_display_message)
|
||||
<div class="alert alert-dismissable alert-info">
|
||||
{{ nl2br(e($event->post_order_display_message)) }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="order_details well">
|
||||
<div class="row">
|
||||
<div class="col-sm-4 col-xs-6">
|
||||
<b>@lang("Public_ViewEvent.first_name")</b><br> {{$order->first_name}}
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4 col-xs-6">
|
||||
<b>@lang("Public_ViewEvent.last_name")</b><br> {{$order->last_name}}
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4 col-xs-6">
|
||||
<b>@lang("Public_ViewEvent.amount")</b><br> {{$order->event->currency_symbol}}{{number_format($order->total_amount, 2)}}
|
||||
@if($event->organiser->charge_tax)
|
||||
<small>{{ $orderService->getVatFormattedInBrackets() }}</small>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4 col-xs-6">
|
||||
<b>@lang("Public_ViewEvent.reference")</b><br> {{$order->order_reference}}
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4 col-xs-6">
|
||||
<b>@lang("Public_ViewEvent.date")</b><br> {{$order->created_at->toDateTimeString()}}
|
||||
</div>
|
||||
|
||||
<div class="col-sm-4 col-xs-6">
|
||||
<b>@lang("Public_ViewEvent.email")</b><br> {{$order->email}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@if(!$order->is_payment_received)
|
||||
<h3>
|
||||
@lang("Public_ViewEvent.payment_instructions")
|
||||
</h3>
|
||||
<div class="alert alert-info">
|
||||
@lang("Public_ViewEvent.order_awaiting_payment")
|
||||
</div>
|
||||
<div class="offline_payment_instructions well">
|
||||
{!! Markdown::parse($event->offline_payment_instructions) !!}
|
||||
</div>
|
||||
|
||||
@endif
|
||||
|
||||
<h3>
|
||||
@lang("Public_ViewEvent.order_items")
|
||||
</h3>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
@lang("Public_ViewEvent.ticket")
|
||||
</th>
|
||||
<th>
|
||||
@lang("Public_ViewEvent.quantity_full")
|
||||
</th>
|
||||
<th>
|
||||
@lang("Public_ViewEvent.price")
|
||||
</th>
|
||||
<th>
|
||||
@lang("Public_ViewEvent.booking_fee")
|
||||
</th>
|
||||
<th>
|
||||
@lang("Public_ViewEvent.total")
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($order->orderItems as $order_item)
|
||||
<tr>
|
||||
<td>
|
||||
{{$order_item->title}}
|
||||
</td>
|
||||
<td>
|
||||
{{$order_item->quantity}}
|
||||
</td>
|
||||
<td>
|
||||
@if((int)ceil($order_item->unit_price) == 0)
|
||||
@lang("Public_ViewEvent.free")
|
||||
@else
|
||||
{{money($order_item->unit_price, $order->event->currency)}}
|
||||
@endif
|
||||
|
||||
</td>
|
||||
<td>
|
||||
@if((int)ceil($order_item->unit_price) == 0)
|
||||
-
|
||||
@else
|
||||
{{money($order_item->unit_booking_fee, $order->event->currency)}}
|
||||
@endif
|
||||
|
||||
</td>
|
||||
<td>
|
||||
@if((int)ceil($order_item->unit_price) == 0)
|
||||
@lang("Public_ViewEvent.free")
|
||||
@else
|
||||
{{money(($order_item->unit_price + $order_item->unit_booking_fee) * ($order_item->quantity), $order->event->currency)}}
|
||||
@endif
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
<tr>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
<b>@lang("Public_ViewEvent.sub_total")</b>
|
||||
</td>
|
||||
<td colspan="2">
|
||||
{{ $orderService->getOrderTotalWithBookingFee(true) }}
|
||||
</td>
|
||||
</tr>
|
||||
@if($event->organiser->charge_tax)
|
||||
<tr>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
{{$event->organiser->tax_name}}
|
||||
</td>
|
||||
<td colspan="2">
|
||||
{{ $orderService->getTaxAmount(true) }}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
<tr>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
<b>Total</b>
|
||||
</td>
|
||||
<td colspan="2">
|
||||
{{ $orderService->getGrandTotal(true) }}
|
||||
</td>
|
||||
</tr>
|
||||
@if($order->is_refunded || $order->is_partially_refunded)
|
||||
<tr>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
<b>@lang("Public_ViewEvent.refunded_amount")</b>
|
||||
</td>
|
||||
<td colspan="2">
|
||||
{{money($order->amount_refunded, $order->event->currency)}}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
<b>@lang("Public_ViewEvent.total")</b>
|
||||
</td>
|
||||
<td colspan="2">
|
||||
{{money($order->total_amount - $order->amount_refunded, $order->event->currency)}}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<h3>
|
||||
@lang("Public_ViewEvent.order_attendees")
|
||||
</h3>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover table-striped">
|
||||
<tbody>
|
||||
@foreach($order->attendees as $attendee)
|
||||
<tr>
|
||||
<td>
|
||||
{{$attendee->first_name}}
|
||||
{{$attendee->last_name}}
|
||||
(<a href="mailto:{{$attendee->email}}">{{$attendee->email}}</a>)
|
||||
</td>
|
||||
<td>
|
||||
{{{$attendee->ticket->title}}}
|
||||
</td>
|
||||
<td>
|
||||
@if($attendee->is_cancelled)
|
||||
@lang("Public_ViewEvent.attendee_cancelled")
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
@extends('Bilettm.Layouts.BilettmLayout')
|
||||
|
||||
@section('content')
|
||||
|
||||
@include('Bilettm.ViewEvent.Partials.HeaderSection')
|
||||
{{--@include('Public.ViewEvent.Partials.EventShareSection')--}}
|
||||
@include('Bilettm.ViewEvent.Partials.ViewOrderSection')
|
||||
@include('Bilettm.ViewEvent.Partials.FooterSection')
|
||||
|
||||
@stop
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
<div class="form-group col-md-12">
|
||||
{!! Form::label('title', trans("Event.event_title"), array('class'=>'control-label required')) !!}
|
||||
{!! Form::text('title', Input::old('title'),
|
||||
{!! Form::text('title', Input::old('title'),
|
||||
array(
|
||||
'class'=>'form-control',
|
||||
'placeholder'=>trans("Event.event_title_placeholder", ["name"=>Auth::user()->first_name])
|
||||
|
|
@ -43,8 +43,8 @@
|
|||
</div>
|
||||
|
||||
<div class="form-group col-md-12">
|
||||
{!! Form::label('description', trans("Event.event_description"), array('class'=>'control-label')) !!}
|
||||
{!! Form::textarea('description', Input::old('description'),
|
||||
{!! Form::label('description', trans("Event.event_description"), array('class'=>'control-label')) !!}
|
||||
{!! Form::textarea('description', Input::old('description'),
|
||||
array(
|
||||
'class'=>'form-control editable',
|
||||
'rows' => 5
|
||||
|
|
@ -83,21 +83,21 @@
|
|||
<div class="address-manual" style="display:{{$event->location_is_manual ? 'block' : 'none'}};">
|
||||
<div class="form-group">
|
||||
{!! Form::label('location_venue_name', trans("Event.venue_name"), array('class'=>'control-label required ')) !!}
|
||||
{!! Form::text('location_venue_name', $event->venue_name, [
|
||||
{!! Form::text('location_venue_name', $event->venue_name, [
|
||||
'class'=>'form-control location_field',
|
||||
'placeholder'=>trans("Event.venue_name_placeholder") // same as above
|
||||
]) !!}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{!! Form::label('location_address_line_1', trans("Event.address_line_1"), array('class'=>'control-label')) !!}
|
||||
{!! Form::text('location_address_line_1', $event->location_address_line_1, [
|
||||
{!! Form::text('location_address_line_1', $event->location_address_line_1, [
|
||||
'class'=>'form-control location_field',
|
||||
'placeholder'=>trans("Event.address_line_1_placeholder")//'E.g: 45 Grafton St.'
|
||||
]) !!}
|
||||
</div>
|
||||
<div class="form-group">
|
||||
{!! Form::label('location_address_line_2', trans("Event.address_line_2"), array('class'=>'control-label')) !!}
|
||||
{!! Form::text('location_address_line_2', $event->location_address_line_2, [
|
||||
{!! Form::text('location_address_line_2', $event->location_address_line_2, [
|
||||
'class'=>'form-control location_field',
|
||||
'placeholder'=>trans("Event.address_line_2_placeholder")//'E.g: Dublin.'
|
||||
]) !!}
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label('location_state', trans("Event.city"), array('class'=>'control-label')) !!}
|
||||
{!! Form::text('location_state', $event->location_state, [
|
||||
{!! Form::text('location_state', $event->location_state, [
|
||||
'class'=>'form-control location_field',
|
||||
'placeholder'=>trans("Event.city_placeholder")//'E.g: Dublin.'
|
||||
]) !!}
|
||||
|
|
@ -116,7 +116,7 @@
|
|||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label('location_post_code', trans("Event.post_code"), array('class'=>'control-label')) !!}
|
||||
{!! Form::text('location_post_code', $event->location_post_code, [
|
||||
{!! Form::text('location_post_code', $event->location_post_code, [
|
||||
'class'=>'form-control location_field',
|
||||
'placeholder'=>trans("Event.post_code_placeholder")// 'E.g: 94568.'
|
||||
]) !!}
|
||||
|
|
@ -135,7 +135,7 @@
|
|||
<div class="col-sm-6">
|
||||
<div class="form-group">
|
||||
{!! Form::label('start_date', trans("Event.event_start_date"), array('class'=>'required control-label')) !!}
|
||||
{!! Form::text('start_date', $event->getFormattedDate('start_date'),
|
||||
{!! Form::text('start_date', $event->getFormattedDate('start_date'),
|
||||
[
|
||||
'class'=>'form-control start hasDatepicker ',
|
||||
'data-field'=>'datetime',
|
||||
|
|
@ -173,19 +173,7 @@
|
|||
</div>
|
||||
|
||||
@if($event->images->count())
|
||||
<div class="form-group">
|
||||
{!! Form::label('event_image_position', trans("Event.event_image_type"), array('class'=>'control-label')) !!}
|
||||
{!! Form::select('event_image_position', [
|
||||
'' => trans("Event.event_image_select"),
|
||||
'cinema' => trans("Event.event_image_cinema"),
|
||||
'theatre' => trans("Event.event_image_theatre"),
|
||||
'musical' => trans("Event.event_image_musical"),
|
||||
'other' => trans("Event.event_image_other"),
|
||||
],
|
||||
Input::old('event_image_position'),
|
||||
['class'=>'form-control']
|
||||
) !!}
|
||||
</div>
|
||||
|
||||
{!! Form::label('', trans("Event.current_event_flyer"), array('class'=>'control-label ')) !!}
|
||||
<div class="form-group">
|
||||
<div class="well well-sm well-small">
|
||||
|
|
|
|||
|
|
@ -0,0 +1,44 @@
|
|||
@if ($paginator->hasPages())
|
||||
<ul class="pagination" role="navigation">
|
||||
{{-- Previous Page Link --}}
|
||||
@if ($paginator->onFirstPage())
|
||||
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
|
||||
<span class="page-link" aria-hidden="true">‹</span>
|
||||
</li>
|
||||
@else
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a>
|
||||
</li>
|
||||
@endif
|
||||
|
||||
{{-- Pagination Elements --}}
|
||||
@foreach ($elements as $element)
|
||||
{{-- "Three Dots" Separator --}}
|
||||
@if (is_string($element))
|
||||
<li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li>
|
||||
@endif
|
||||
|
||||
{{-- Array Of Links --}}
|
||||
@if (is_array($element))
|
||||
@foreach ($element as $page => $url)
|
||||
@if ($page == $paginator->currentPage())
|
||||
<li class="page-item active" aria-current="page"><span class="page-link">{{ $page }}</span></li>
|
||||
@else
|
||||
<li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
{{-- Next Page Link --}}
|
||||
@if ($paginator->hasMorePages())
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a>
|
||||
</li>
|
||||
@else
|
||||
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
|
||||
<span class="page-link" aria-hidden="true">›</span>
|
||||
</li>
|
||||
@endif
|
||||
</ul>
|
||||
@endif
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
@if ($paginator->hasPages())
|
||||
<ul class="pagination" role="navigation">
|
||||
{{-- Previous Page Link --}}
|
||||
@if ($paginator->onFirstPage())
|
||||
<li class="disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
|
||||
<span aria-hidden="true">‹</span>
|
||||
</li>
|
||||
@else
|
||||
<li>
|
||||
<a href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a>
|
||||
</li>
|
||||
@endif
|
||||
|
||||
{{-- Pagination Elements --}}
|
||||
@foreach ($elements as $element)
|
||||
{{-- "Three Dots" Separator --}}
|
||||
@if (is_string($element))
|
||||
<li class="disabled" aria-disabled="true"><span>{{ $element }}</span></li>
|
||||
@endif
|
||||
|
||||
{{-- Array Of Links --}}
|
||||
@if (is_array($element))
|
||||
@foreach ($element as $page => $url)
|
||||
@if ($page == $paginator->currentPage())
|
||||
<li class="active" aria-current="page"><span>{{ $page }}</span></li>
|
||||
@else
|
||||
<li><a href="{{ $url }}">{{ $page }}</a></li>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
{{-- Next Page Link --}}
|
||||
@if ($paginator->hasMorePages())
|
||||
<li>
|
||||
<a href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a>
|
||||
</li>
|
||||
@else
|
||||
<li class="disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
|
||||
<span aria-hidden="true">›</span>
|
||||
</li>
|
||||
@endif
|
||||
</ul>
|
||||
@endif
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue